diff options
author | swills <swills@FreeBSD.org> | 2018-07-11 00:03:13 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2018-07-11 00:03:13 +0800 |
commit | a4e2b97f2d9762c55a50e6fcef4eecf4c8d13f58 (patch) | |
tree | 05ba75702cd298598567052db5fc5f22f126ecb5 /security | |
parent | 4b8a86b8f3eacb2513f87cac51e9fa3607b851e4 (diff) | |
download | freebsd-ports-gnome-a4e2b97f2d9762c55a50e6fcef4eecf4c8d13f58.tar.gz freebsd-ports-gnome-a4e2b97f2d9762c55a50e6fcef4eecf4c8d13f58.tar.zst freebsd-ports-gnome-a4e2b97f2d9762c55a50e6fcef4eecf4c8d13f58.zip |
security/base: Correct snort URL in external_sig_link array
While here, update url in pkg-descr
PR: 202655
Submitted by: Jeremy Baggs <jbaggs2016@gmail.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/base/Makefile | 1 | ||||
-rw-r--r-- | security/base/files/patch-base__conf.php.dist | 11 | ||||
-rw-r--r-- | security/base/pkg-descr | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/security/base/Makefile b/security/base/Makefile index accd7233ad5d..23adbc8bb850 100644 --- a/security/base/Makefile +++ b/security/base/Makefile @@ -3,6 +3,7 @@ PORTNAME= base PORTVERSION= 1.4.5 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SF/secureideas/BASE/${PORTNAME}-${PORTVERSION} diff --git a/security/base/files/patch-base__conf.php.dist b/security/base/files/patch-base__conf.php.dist new file mode 100644 index 000000000000..149b68de63b2 --- /dev/null +++ b/security/base/files/patch-base__conf.php.dist @@ -0,0 +1,11 @@ +--- base_conf.php.dist.orig 2016-10-13 08:46:30 UTC ++++ base_conf.php.dist +@@ -393,7 +393,7 @@ $external_port_link = array('sans' = + + /* Signature references */ + $external_sig_link = array('bugtraq' => array('http://www.securityfocus.com/bid/', ''), +- 'snort' => array('http://www.snort.org/search/sid/', ''), ++ 'snort' => array('http://www.snort.org/rule_docs/', ''), + 'cve' => array('http://cve.mitre.org/cgi-bin/cvename.cgi?name=', ''), + 'arachnids' => array('http://www.whitehats.com/info/ids', ''), + 'mcafee' => array('http://vil.nai.com/vil/content/v_', '.htm'), diff --git a/security/base/pkg-descr b/security/base/pkg-descr index b20251ee839d..e9a8c51ab7f2 100644 --- a/security/base/pkg-descr +++ b/security/base/pkg-descr @@ -8,4 +8,4 @@ system, so that you as the security admin can decide what and how much information each user can see. It also has a simple to use, web-based setup program for people not comfortable with editing files directly. -WWW: http://secureideas.sourceforge.net/ +WWW: https://sourceforge.net/projects/secureideas/ |