Beispiel #1
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     url = "http://securityvulns.com/exploits/"
     parameters = {"keyword":"{0}".format(self.filter_description),}
     try:
         pagehtml = d.getDownloadPage(url, parameters)
         if (pagehtml):
             self.extractData(pagehtml)
     except Exception, ex:
         pass
Beispiel #2
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     url = "http://1337day.com/search"
     data = {"dong": "{0}".format(self.filter_description), "submit_search": "Submit"}
     try:
         pagehtml = d.postDownloadPageDay(url, data)
         if (pagehtml):
             self.extractData(pagehtml)
     except Exception, ex:
         pass
Beispiel #3
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     for i in range(5):
         url = "http://packetstormsecurity.com/search/files/page{0}/".format(i)
         parameters = {"q": "{0}".format(self.filter_description)}
         try:
             pagehtml = d.getDownloadPage(url, parameters)
             if (pagehtml):
                 self.extractData(pagehtml)
         except Exception, ex:
             pass
Beispiel #4
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     for i in range(5):
         url = "http://packetstormsecurity.com/search/files/page{0}/".format(
             i)
         parameters = {"q": "{0}".format(self.filter_description)}
         try:
             pagehtml = d.getDownloadPage(url, parameters)
             if (pagehtml):
                 self.extractData(pagehtml)
         except Exception, ex:
             pass
Beispiel #5
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     for i in range(5):
         url = "http://www.exploit-db.com/search/"
         parameters = {"action": "search", "filter_page":"{0}".format(i),
                       "filter_description":"{0}".format(self.filter_description)}
         try:
             pagehtml = d.getDownloadPage(url, parameters)
             if (pagehtml):
                 self.extractData(pagehtml)
         except Exception, ex:
             pass
Beispiel #6
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     url = "http://securityvulns.com/exploits/"
     parameters = {
         "keyword": "{0}".format(self.filter_description),
     }
     try:
         pagehtml = d.getDownloadPage(url, parameters)
         if (pagehtml):
             self.extractData(pagehtml)
     except Exception, ex:
         pass
Beispiel #7
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     url = "http://1337day.com/search"
     data = {
         "dong": "{0}".format(self.filter_description),
         "submit_search": "Submit"
     }
     try:
         pagehtml = d.postDownloadPageDay(url, data)
         if (pagehtml):
             self.extractData(pagehtml)
     except Exception, ex:
         pass
Beispiel #8
0
 def botSearch(self):
     d = DownloadPage()
     self.results = []
     for i in range(5):
         url = "http://www.exploit-db.com/search/"
         parameters = {
             "action": "search",
             "filter_page": "{0}".format(i),
             "filter_description": "{0}".format(self.filter_description)
         }
         try:
             pagehtml = d.getDownloadPage(url, parameters)
             if (pagehtml):
                 self.extractData(pagehtml)
         except Exception, ex:
             pass