nightly milestone build ecksdeeee

This commit is contained in:
panki27 2017-11-15 22:50:55 +01:00
parent a72100ee23
commit 70945bcca7

View File

@ -1,17 +1,34 @@
#!/bin/env/python #!/usr/bin/env python
import datetime, sys, re, urllib2 import datetime, sys, re, urllib2, logging
#from pushnotify import abstract, get_client, exceptions, pushover
import pushnotify
from bs4 import BeautifulSoup from bs4 import BeautifulSoup
ERRSTR = '!!!!!!!!!!!!! '
PUSHOVER_DEVICE = 'chromehome'
TARGET_URL = 'https://www.cert-bund.de/overview/AdvisoryShort' TARGET_URL = 'https://www.cert-bund.de/overview/AdvisoryShort'
MEMORY_PATH = 'C:\Users\Panki\Desktop\Privat\Dev\certAlert\out.txt' MEMORY_PATH = 'C:\Users\Panki\Desktop\Privat\Dev\certAlert\out.txt'
PROGRAMS = [u'Chrome', u'OpenSSH', u'Java', u'Linux']
USER_KEY_PATH = 'C:\Users\Panki\Desktop\Privat\Dev\pushover_user'
API_KEY_PATH = 'C:\Users\Panki\Desktop\Privat\Dev\pushover_key'
PROGRAMS = [u'Chrome', u'OpenSSH', u'Java', u'Linux', u'Apache', u'Windows']
with open(USER_KEY_PATH, 'r') as userKeyFile:
USER_KEY = userKeyFile.read()
userKeyFile.close()
with open(API_KEY_PATH, 'r') as apiKeyFile:
API_KEY = apiKeyFile.read()
userKeyFile.close()
class Advisory: class Advisory:
def __init__(self, html): def __init__(self, html):
self.date = datetime.datetime.strptime(html.td.text, '%d.%m.%y').date() self.date = datetime.datetime.strptime(html.td.text, '%d.%m.%y').date()
self.risk = int(html.find('span', {'class': re.compile('search-result-crit-*')}).text) self.risk = int(html.find('span', {'class': re.compile('search-result-crit-*')}).text)
self.identifier = html.find('a', {'class': 'search-result-link'}).text self.identifier = html.find('a', {'class': 'search-result-link'}).text
self.link = TARGET_URL + html.find('a', {'class': 'search-result-link'})['href'] self.link = 'https://www.cert-bund.de/overview/' + html.find('a', {'class': 'search-result-link'})['href']
self.description = html.find_all('a', {'class': 'search-result-link'})[1].text self.description = html.find_all('a', {'class': 'search-result-link'})[1].text
def debug(self): def debug(self):
print('date: '+ self.date.isoformat()) print('date: '+ self.date.isoformat())
@ -20,41 +37,62 @@ class Advisory:
print('desc: ' + self.description) print('desc: ' + self.description)
print('link: ' + self.link) print('link: ' + self.link)
try: def startLogger():
response = urllib2.urlopen(TARGET_URL) logger = logging.getLogger('pushnotify')
except: logger.setLevel(logging.DEBUG)F
e = sys.exc_info()[0] formatter = logging.Formatter('%(name)s-%(levelname)s: %(message)s')
print('Error getting Webpage!\r\n' + e) handler = logging.StreamHandler()
sys.exit('Stopping execution!') handler.setFormatter(formatter)
html = response.read() logger.addHandler(handler)
soup = BeautifulSoup(html, 'html.parser')
results = []
for adv in soup.find_all('tr', {'class' : re.compile('search-result-*')}): def main():
x = Advisory(adv) import pushnotify
results.append(x) startLogger()
try: #readKeys()
with open(MEMORY_PATH, 'r') as memFile: client = pushnotify.get_client('pushover', API_KEY, 'certAlert')
checkedIDs = memFile.read() client.add_key(USER_KEY, PUSHOVER_DEVICE)
memFile.close() try:
except IOError: response = urllib2.urlopen(TARGET_URL)
print('Error reading memory file!') except:
print('Continuing without list of checked IDs...') e = sys.exc_info()[0]
checkedIDs = '' print(ERRSTR + 'Error getting Webpage!\r\n' + e)
except: sys.exit(ERRSTR + 'Stopping execution!')
e = sys.exc_info()[0] html = response.read()
print('An unknown error occured!') soup = BeautifulSoup(html, 'html.parser')
print(e)
for result in results: results = []
if result.risk > 3: for adv in soup.find_all('tr', {'class' : re.compile('search-result-*')}):
for prog in PROGRAMS: x = Advisory(adv)
if re.match(prog, result.description): results.append(x)
if result.identifier not in checkedIDs: try:
result.debug() with open(MEMORY_PATH, 'r') as memFile:
print('==================================') checkedIDs = memFile.read()
else: memFile.close()
print('Already sent an alert for ' + result.identifier +', skipping...') except IOError:
with open(MEMORY_PATH, 'w') as memFile: print(ERRSTR + 'Error reading memory file!')
print(ERRSTR + 'Continuing without list of checked IDs...')
checkedIDs = ''
except:
e = sys.exc_info()[0]
print('An unknown error occured!')
print(e)
for result in results: for result in results:
memFile.write(result.identifier + '\r\n') if result.risk > 3:
memFile.close() for prog in PROGRAMS:
if re.match(prog, result.description, re.IGNORECASE):
if result.identifier not in checkedIDs:
#this means we have found an alert that we have not seen before! lets alert the user...
client.notify(result.description, result.identifier, kwargs={'priority': 1, 'url': result.link,'url_title': result.identifier});
result.debug()
print('========================================================================')
else:
print('Already sent an alert for ' + result.identifier +', skipping...')
with open(MEMORY_PATH, 'w') as memFile:
for result in results:
memFile.write(result.identifier + '\r\n')
memFile.close()
if __name__ == '__main__':
main()