aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Buchholz <rbu@gentoo.org>2009-04-05 15:05:28 +0000
committerRobert Buchholz <rbu@gentoo.org>2009-04-05 15:05:28 +0000
commitf420a3fdf81bc7e143cbb3b687a0884b106454a9 (patch)
tree9ee4ef72059f6b6d8a24688fad03494e6cffadfd /lib/python
parentMITRE sync (diff)
downloadsecurity-f420a3fdf81bc7e143cbb3b687a0884b106454a9.tar.gz
security-f420a3fdf81bc7e143cbb3b687a0884b106454a9.tar.bz2
security-f420a3fdf81bc7e143cbb3b687a0884b106454a9.zip
Use better Secunia URL and wiki bug
svn path=/; revision=1244
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/cvetools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/cvetools.py b/lib/python/cvetools.py
index d7d35e0..46868c2 100644
--- a/lib/python/cvetools.py
+++ b/lib/python/cvetools.py
@@ -70,7 +70,7 @@ class CVEData:
import urllib2
for SAid in SAs:
- html = urllib2.urlopen("http://secunia.com/advisories/" + SAid).read()
+ html = urllib2.urlopen("http://secunia.com/advisories/%s/2/" % SAid).read()
match = re.findall(r'<b>Provided and/or discovered by</b>:(.+?)<b>', html, flags = re.S)
if match:
text = re.sub('<.*?>', '', match[0])