Difference between revisions of "Public.vulnerabilities (table)"
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
− | |- | + | |- valign="top" |
| '''Table | | '''Table | ||
| public.vulnerabilities | | public.vulnerabilities | ||
− | |||
|} | |} | ||
− | + | === Columns === | |
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
Line 15: | Line 14: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
− | | ''' | + | | '''Description |
− | + | ||
− | + | |- valign="top" | |
− | |- | ||
| vulnerabilityid | | vulnerabilityid | ||
| integer | | integer | ||
| not null | | not null | ||
| | | | ||
− | |||
| | | | ||
− | |- | + | |- valign="top" |
| nodeid | | nodeid | ||
| integer | | integer | ||
Line 31: | Line 28: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| ipaddr | | ipaddr | ||
| varchar(16) | | varchar(16) | ||
Line 38: | Line 34: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| serviceid | | serviceid | ||
| integer | | integer | ||
Line 45: | Line 40: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| creationtime | | creationtime | ||
| timestamp with time zone | | timestamp with time zone | ||
Line 52: | Line 46: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| lastattempttime | | lastattempttime | ||
| timestamp with time zone | | timestamp with time zone | ||
Line 59: | Line 52: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| lastscantime | | lastscantime | ||
| timestamp with time zone | | timestamp with time zone | ||
Line 66: | Line 58: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| resolvedtime | | resolvedtime | ||
| timestamp with time zone | | timestamp with time zone | ||
Line 73: | Line 64: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| severity | | severity | ||
| integer | | integer | ||
Line 80: | Line 70: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| pluginid | | pluginid | ||
| integer | | integer | ||
Line 87: | Line 76: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| pluginsubid | | pluginsubid | ||
| integer | | integer | ||
Line 94: | Line 82: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| logmsg | | logmsg | ||
| varchar(256) | | varchar(256) | ||
Line 101: | Line 88: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| descr | | descr | ||
| text | | text | ||
Line 108: | Line 94: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| port | | port | ||
| integer | | integer | ||
Line 115: | Line 100: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| protocol | | protocol | ||
| varchar(32) | | varchar(32) | ||
Line 122: | Line 106: | ||
| | | | ||
| | | | ||
− | + | |- valign="top" | |
− | |- | ||
| cveentry | | cveentry | ||
| varchar(255) | | varchar(255) | ||
Line 129: | Line 112: | ||
| | | | ||
| | | | ||
+ | |} | ||
+ | |||
+ | === Primary Key === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Primary Key | ||
+ | | '''Columns | ||
+ | |- valign="top" | ||
+ | | pk_vulnerabilityid | ||
+ | | vulnerabilityid | ||
+ | |} | ||
+ | |||
+ | === Indexes === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Index | ||
+ | | '''Type | ||
+ | | '''Columns | ||
+ | |||
+ | |- valign="top" | ||
+ | | vulnerabilities_ipaddr_idx | ||
+ | | | ||
+ | | ipaddr | ||
+ | |- valign="top" | ||
+ | | vulnerabilities_nodeid_idx | ||
+ | | | ||
+ | | nodeid | ||
+ | |- valign="top" | ||
+ | | vulnerabilities_port_idx | ||
| | | | ||
+ | | port | ||
+ | |- valign="top" | ||
+ | | vulnerabilities_protocol_idx | ||
+ | | | ||
+ | | protocol | ||
+ | |- valign="top" | ||
+ | | vulnerabilities_severity_idx | ||
+ | | | ||
+ | | severity | ||
|} | |} |
Latest revision as of 10:10, 27 August 2011
Contents
wikibot[edit]
Table | public.vulnerabilities |
Columns[edit]
Column | Data Type | Nullable | Default | Description |
vulnerabilityid | integer | not null | ||
nodeid | integer | null | ||
ipaddr | varchar(16) | null | ||
serviceid | integer | null | ||
creationtime | timestamp with time zone | not null | ||
lastattempttime | timestamp with time zone | not null | ||
lastscantime | timestamp with time zone | not null | ||
resolvedtime | timestamp with time zone | null | ||
severity | integer | not null | ||
pluginid | integer | not null | ||
pluginsubid | integer | not null | ||
logmsg | varchar(256) | null | ||
descr | text | null | ||
port | integer | null | ||
protocol | varchar(32) | null | ||
cveentry | varchar(255) | null |
Primary Key[edit]
Primary Key | Columns |
pk_vulnerabilityid | vulnerabilityid |
Indexes[edit]
Index | Type | Columns |
vulnerabilities_ipaddr_idx | ipaddr | |
vulnerabilities_nodeid_idx | nodeid | |
vulnerabilities_port_idx | port | |
vulnerabilities_protocol_idx | protocol | |
vulnerabilities_severity_idx | severity |