import sqlite3 import datetime class stash_manager: def __init__(self): self.db = "stash.sqlite" self.results = "" self.totalresults = "" self.latestscandomain = {} self.domainscanhistory = {} self.scanboarddata = {} def do_init(self): conn = sqlite3.connect(self.db) c = conn.cursor() c.execute ('CREATE TABLE results (domain text, resource text, type text, find_date date, source text)') conn.commit() conn.close() return def store(self,domain, resource,res_type,source): self.domain = domain self.resource = resource self.type = res_type self.source = source self.date = datetime.date.today() try: conn = sqlite3.connect(self.db) c = conn.cursor() c.execute ('INSERT INTO results (domain,resource, type, find_date, source) VALUES (?,?,?,?,?)',(self.domain,self.resource,self.type,self.date,self.source)) conn.commit() conn.close() except Exception as e: print(e) return def store_all(self,domain,all,res_type,source): self.domain = domain self.all = all self.type = res_type self.source = source self.date = datetime.date.today() for x in self.all: try: conn = sqlite3.connect(self.db) c = conn.cursor() c.execute ('INSERT INTO results (domain,resource, type, find_date, source) VALUES (?,?,?,?,?)',(self.domain,x,self.type,self.date,self.source)) conn.commit() conn.close() except Exception as e: print(e) return def getlatestscandomain(self,domain): try: self.latestscandomain["domain"] = domain conn = sqlite3.connect(self.db) c = conn.cursor() c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="host"''',(domain,)) data = c.fetchone() self.latestscandomain["host"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="email"''',(domain,)) data = c.fetchone() self.latestscandomain["email"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="ip"''',(domain,)) data = c.fetchone() self.latestscandomain["ip"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="vhost"''',(domain,)) data = c.fetchone() self.latestscandomain["vhost"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="shodan"''',(domain,)) data = c.fetchone() self.latestscandomain["shodan"] = data[0] c.execute('''SELECT MAX(find_date) FROM results WHERE domain=?''',(domain,)) data = c.fetchone() self.latestscandomain["latestdate"] = data[0] latestdate = data [0] c.execute('''SELECT * FROM results WHERE domain=? AND find_date=? AND type="host"''',(domain,latestdate,)) scandetailshost = c.fetchall() self.latestscandomain["scandetailshost"] = scandetailshost c.execute('''SELECT * FROM results WHERE domain=? AND find_date=? AND type="email"''',(domain,latestdate,)) scandetailsemail = c.fetchall() self.latestscandomain["scandetailsemail"] = scandetailsemail c.execute('''SELECT * FROM results WHERE domain=? AND find_date=? AND type="ip"''',(domain,latestdate,)) scandetailsip = c.fetchall() self.latestscandomain["scandetailsip"] = scandetailsip c.execute('''SELECT * FROM results WHERE domain=? AND find_date=? AND type="vhost"''',(domain,latestdate,)) scandetailsvhost = c.fetchall() self.latestscandomain["scandetailsvhost"] = scandetailsvhost c.execute('''SELECT * FROM results WHERE domain=? AND find_date=? AND type="shodan"''',(domain,latestdate,)) scandetailsshodan = c.fetchall() self.latestscandomain["scandetailsshodan"] = scandetailsshodan return self.latestscandomain except Exception as e: print(e) finally: conn.close() def getscanboarddata(self): try: conn = sqlite3.connect(self.db) c = conn.cursor() c.execute('''SELECT COUNT(*) from results WHERE type="host"''') data = c.fetchone() self.scanboarddata["host"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE type="email"''') data = c.fetchone() self.scanboarddata["email"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE type="ip"''') data = c.fetchone() self.scanboarddata["ip"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE type="vhost"''') data = c.fetchone() self.scanboarddata["vhost"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE type="shodan"''') data = c.fetchone() self.scanboarddata["shodan"] = data[0] c.execute('''SELECT COUNT(DISTINCT(domain)) FROM results ''') data = c.fetchone() self.scanboarddata["domains"] = data[0] return self.scanboarddata except Exception as e: print(e) finally: conn.close() def getscanhistory(self,domain): '''dis needs fixing; minden datumhoz kell a count of hosts, emails, ip vhost for a specific domain''' try: self.getscanhistory["domain"] = domain conn = sqlite3.connect(self.db) c = conn.cursor() c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="host"''',(domain,)) data = c.fetchone() self.domainscanhistory["host"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="email"''',(domain,)) data = c.fetchone() self.domainscanhistory["email"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="ip"''',(domain,)) data = c.fetchone() self.domainscanhistory["ip"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="vhost"''',(domain,)) data = c.fetchone() self.domainscanhistory["vhost"] = data[0] c.execute('''SELECT COUNT(*) from results WHERE domain=? AND type="shodan"''',(domain,)) data = c.fetchone() self.domainscanhistory["shodan"] = data[0] c.execute('''SELECT find_date FROM results WHERE domain=?''',(domain,)) data = c.fetchone() return self.domainscanhistory except Exception as e: print(e) finally: conn.close()