| 160 |
'Vulnerable packages in the testing suite'), |
'Vulnerable packages in the testing suite'), |
| 161 |
('status/release/stable', |
('status/release/stable', |
| 162 |
'Vulnerable packages in the stable suite'), |
'Vulnerable packages in the stable suite'), |
|
('status/release/oldstable', |
|
|
'Vulnerable packages in the oldstable suite'), |
|
| 163 |
('status/dtsa-candidates', "Candidates for DTSAs"), |
('status/dtsa-candidates', "Candidates for DTSAs"), |
| 164 |
('status/todo', 'TODO items'), |
('status/todo', 'TODO items'), |
| 165 |
('status/itp', 'ITPs with potential security issues'), |
('status/itp', 'ITPs with potential security issues'), |
| 1082 |
return url.absolute("http://cve.mitre.org/cgi-bin/cvename.cgi", |
return url.absolute("http://cve.mitre.org/cgi-bin/cvename.cgi", |
| 1083 |
name=name) |
name=name) |
| 1084 |
def url_nvd(self, url, name): |
def url_nvd(self, url, name): |
| 1085 |
return url.absolute("http://nvd.nist.gov/nvd.cfm", |
return url.absolute("http://web.nvd.nist.gov/view/vuln/detail", |
| 1086 |
cvename=name) |
vulnId=name) |
| 1087 |
|
|
| 1088 |
def url_dsa(self, url, dsa, re_dsa=re.compile(r'^DSA-(\d+)(?:-\d+)?$')): |
def url_dsa(self, url, dsa, re_dsa=re.compile(r'^DSA-(\d+)(?:-\d+)?$')): |
| 1089 |
match = re_dsa.match(dsa) |
match = re_dsa.match(dsa) |
| 1107 |
return url.absolute("http://packages.qa.debian.org/common/index.html", |
return url.absolute("http://packages.qa.debian.org/common/index.html", |
| 1108 |
src=package) |
src=package) |
| 1109 |
def url_testing_status(self, url, package): |
def url_testing_status(self, url, package): |
| 1110 |
return url.absolute("http://bjorn.haxx.se/debian/testing.pl", |
return url.absolute("http://release.debian.org/migration/testing.pl", |
| 1111 |
package=package) |
package=package) |
| 1112 |
def url_source_package(self, url, package, full=False): |
def url_source_package(self, url, package, full=False): |
| 1113 |
if full: |
if full: |