forked from snort3/snort3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference.lua
More file actions
17 lines (13 loc) · 729 Bytes
/
Copy pathreference.lua
File metadata and controls
17 lines (13 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- The following defines URLs for the references found in the rules
references =
{
{ name = 'bugtraq', url = 'http://www.securityfocus.com/bid/' },
{ name = 'cve', url = 'http://cve.mitre.org/cgi-bin/cvename.cgi?name=' },
{ name = 'arachNIDS', url = 'http://www.whitehats.com/info/IDS' },
{ name = 'osvdb', url = 'http://osvdb.org/show/osvdb/' },
-- Note, this one needs a suffix as well.... lets add that in a bit.
{ name = 'McAfee', url = 'http://vil.nai.com/vil/content/v_' },
{ name = 'nessus', url = 'http://cgi.nessus.org/plugins/dump.php3?id=' },
{ name = 'url', url = 'http://' },
{ name = 'msb', url = 'http://technet.microsoft.com/en-us/security/bulletin/' }
}