[Secure-testing-commits] r33763 - bin

Salvatore Bonaccorso carnil at moszumanska.debian.org
Wed Apr 22 18:43:51 UTC 2015


Author: carnil
Date: 2015-04-22 18:43:51 +0000 (Wed, 22 Apr 2015)
New Revision: 33763

Modified:
   bin/tracker_service.py
Log:
Fix URL used to search CVEs in the Exploit Database

Modified: bin/tracker_service.py
===================================================================
--- bin/tracker_service.py	2015-04-22 18:37:01 UTC (rev 33762)
+++ bin/tracker_service.py	2015-04-22 18:43:51 UTC (rev 33763)
@@ -1442,7 +1442,7 @@
         return url.absoluteDict("http://osvdb.org/search/search", {"search[refid]": name})
     def url_edb_bug(self, url, name):
         name = name[len('CVE-'):] if name.startswith('CVE-') else name
-        return url.absolute("http://www.exploit-db.com/search/", action="search", filter_cve=name)
+        return url.absolute("http://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):




More information about the Secure-testing-commits mailing list