[Git][security-tracker-team/security-tracker][master] 5 commits: tracker_service.py: Remove nonfunctional bugtraq source
Salvatore Bonaccorso (@carnil)
carnil at debian.org
Mon Jun 19 16:38:25 BST 2023
Salvatore Bonaccorso pushed to branch master at Debian Security Tracker / security-tracker
Commits:
3b2752fc by Salvatore Bonaccorso at 2023-06-15T21:08:05+02:00
tracker_service.py: Remove nonfunctional bugtraq source
Signed-off-by: Salvatore Bonaccorso <carnil at debian.org>
- - - - -
424b0eef by Salvatore Bonaccorso at 2023-06-15T21:09:19+02:00
tracker_service.py: Remove non-functional EDB source search
Signed-off-by: Salvatore Bonaccorso <carnil at debian.org>
- - - - -
7b1bcfd1 by Salvatore Bonaccorso at 2023-06-15T21:10:12+02:00
tracker_service.py: Remove nonfunctional Metasploit search
Signed-off-by: Salvatore Bonaccorso <carnil at debian.org>
- - - - -
b7101de8 by Salvatore Bonaccorso at 2023-06-15T21:11:38+02:00
tracker_service.py: Remove non-functional Mageia advisories search
Signed-off-by: Salvatore Bonaccorso <carnil at debian.org>
- - - - -
190d1450 by Salvatore Bonaccorso at 2023-06-19T15:38:14+00:00
Merge branch 'remove-nonfunctional-sources' into 'master'
tracker_service.py: Remove several non-functional and not anymore helpful source searches
See merge request security-tracker-team/security-tracker!139
- - - - -
1 changed file:
- bin/tracker_service.py
Changes:
=====================================
bin/tracker_service.py
=====================================
@@ -383,12 +383,6 @@ data source.""")],
", ",
self.make_fulldisc_bug_ref(url, bug.name, 'fulldisc'),
", ",
- self.make_bugtraq_bug_ref(url, bug.name, 'bugtraq'),
- ", ",
- self.make_edb_bug_ref(url, bug.name, 'EDB'),
- ", ",
- self.make_metasploit_bug_ref(url, bug.name, 'Metasploit'),
- ", ",
self.make_rhbug_ref(url, bug.name,
'Red Hat'),
", ",
@@ -399,8 +393,6 @@ data source.""")],
self.make_suse_bug_ref(url, bug.name, 'bugzilla'),
"/",
self.make_suse_cve_ref(url, bug.name, 'CVE'),
- ", ",
- self.make_mageia_bug_ref(url, bug.name, 'Mageia'),
", GitHub ",
self.make_github_advisory_ref(url, bug.name, 'advisories'),
"/",
@@ -1535,13 +1527,6 @@ Debian bug number.'''),
return url.absolute("https://marc.info/", l="oss-security", s=name)
def url_fulldesc_bug(self, url, name):
return url.absolute("https://marc.info/", l="full-disclosure", s=name)
- def url_bugtraq_bug(self, url, name):
- return url.absolute("https://marc.info/", l="bugtraq", s=name)
- def url_edb_bug(self, url, name):
- name = name[len('CVE-'):] if name.startswith('CVE-') else name
- return url.absolute("https://www.exploit-db.com/search/", action="search", cve=name)
- def url_metasploit_bug(self, url, name):
- return url.absolute("https://www.rapid7.com/db/search", q=name)
def url_rhbug(self, url, name):
return url.absolute("https://bugzilla.redhat.com/show_bug.cgi",
id=name)
@@ -1554,8 +1539,6 @@ Debian bug number.'''),
id=name)
def url_suse_cve(self, url, name):
return url.absolute("https://www.suse.com/security/cve/%s/" % name)
- def url_mageia_bug(self, url, name):
- return url.absolute("https://advisories.mageia.org/%s.html" % name)
def url_github_advisory_bug(self, url, name):
return url.absolute("https://github.com/advisories", query=name)
def url_github_code_bug(self, url, name):
@@ -1653,21 +1636,6 @@ Debian bug number.'''),
name = cve
return A(self.url_fulldesc_bug(url, cve), name)
- def make_bugtraq_bug_ref(self, url, cve, name=None):
- if name is None:
- name = cve
- return A(self.url_bugtraq_bug(url, cve), name)
-
- def make_edb_bug_ref(self, url, cve, name=None):
- if name is None:
- name = cve
- return A(self.url_edb_bug(url, cve), name)
-
- def make_metasploit_bug_ref(self, url, cve, name=None):
- if name is None:
- name = cve
- return A(self.url_metasploit_bug(url, cve), name)
-
def make_rhbug_ref(self, url, cve, name=None):
if name is None:
name = cve
@@ -1693,11 +1661,6 @@ Debian bug number.'''),
name = cve
return A(self.url_suse_cve(url, cve), name)
- def make_mageia_bug_ref(self, url, cve, name=None):
- if name is None:
- name = cve
- return A(self.url_mageia_bug(url, cve), name)
-
def make_github_advisory_ref(self, url, cve, name=None):
if name is None:
name = cve
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/-/compare/60afbfe5e74984f9d4916a60d6b7903e7dc984ca...190d145088442d9aa6d29acf544030052ad1173b
--
View it on GitLab: https://salsa.debian.org/security-tracker-team/security-tracker/-/compare/60afbfe5e74984f9d4916a60d6b7903e7dc984ca...190d145088442d9aa6d29acf544030052ad1173b
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-security-tracker-commits/attachments/20230619/80e219e0/attachment-0001.htm>
More information about the debian-security-tracker-commits
mailing list