Improved debug and manual query

Signed-off-by: Georg <georg@lysergic.dev>
This commit is contained in:
Georg Pfuetzenreuter 2021-08-26 17:30:38 +02:00
parent a458460cec
commit 708e4b7075
Signed by: Georg
GPG Key ID: 1DAF57F49F8E8F22
2 changed files with 29 additions and 30 deletions

Binary file not shown.

View File

@ -78,16 +78,17 @@ class SnoParser(callbacks.Plugin):
asn = 0
subnet = ''
try:
whois = IPWhois(sourceip)
whoisres = whois.lookup_rdap(depth=1,retry_count=0)
results = whoisres
print(results)
asn = whoisres['asn_registry']
country = whoisres['asn_country_code']
description = whoisres['asn_description']
whoisout = '# ' + asn + ' ' + country + ' ' + description
whois = IPWhois(sourceip)
whoisres = whois.lookup_rdap(depth=1,retry_count=0)
results = whoisres
if self.registryValue('whois.debug'):
print(results)
asn = whoisres['asn_registry']
country = whoisres['asn_country_code']
description = whoisres['asn_description']
whoisout = asn + ' ' + country + ' ' + description
except ipwhois.exceptions.IPDefinedError:
whoisout = 'RFC 4291 (Local)'
whoisout = 'RFC 4291 (Local)'
response = whoisout
return response
@ -114,30 +115,30 @@ class SnoParser(callbacks.Plugin):
data = self.whois_get_cache(key=sourceip)
if data is not None:
data = json.loads(data)
#data["cache"] = True
print("DEBUG - CACHE: TRUE")
print(data)
print(sourceip)
if self.registryValue('whois.debug'):
print("SNOPARSER DEBUG - WHOIS_RUN WITH CACHE: TRUE")
print(data)
print(sourceip)
return data
else:
data = self.whois_fresh(sourceip)
print("DEBUG - ELSE WHOIS_FRESH CALLED")
print(data)
print(sourceip)
if data.startswith("#"):
#data["cache"] = False
print("DEBUG - CACHE: FALSE")
if self.registryValue('whois.debug'):
print("SNOPARSER DEBUG - WHOIS_RUN WITH CACHE: FALSE")
print(data)
print(sourceip)
if data.startswith:
if self.registryValue('whois.debug'):
print("SNOPARSER DEBUG - WHOIS_RUN WITH CACHE: FALSE AND CORRECT STARTING CHARACTER")
print(data)
data = json.dumps(data)
state = self.whois_set_cache(key=sourceip, value=data)
print(data)
print(sourceip)
if state is True:
return json.loads(data)
else:
print("Data does not start with correct string")
print(data)
if self.registryValue('whois.debug'):
print("SNOPARSER DEBUG _ WHOIS_RUN WITH CACHE: FALSE AND WRONG STARTING CHARACTER")
print(data)
return data
def query(self, irc, msg, args, ipaddress):
@ -146,11 +147,11 @@ class SnoParser(callbacks.Plugin):
"""
data = self.whois_get_cache(key=ipaddress)
ttl = self.redis_client.get(ipaddress)
decoded = data.decode('utf-8')
ttl = self.redis_client.ttl(ipaddress)
print(data, ' ', ttl)
#irc.reply(str(data), ' Remaining: ', int(ttl), 's')
irc.reply(data, ttl)
print('SnoParser manual query: ', data, ' ', ttl)
irc.reply(f'{decoded} - Remaining: {ttl}s')
query = wrap(query, ['anything'])
@ -174,8 +175,6 @@ class SnoParser(callbacks.Plugin):
realname = couple.group(5)
ip_seen = 0
nick_seen = 0
asn = 0
subnet = ''
whoisout = self.whois_run(sourceip=ip)
DictFromSnotice = {'notice': 'connect', 'nickname': nickname, 'username': username, 'host': host, 'ip': ip, 'realname': realname, 'ipCount': ip_seen, 'nickCount': nick_seen}