fix tabnabbing requests error

This commit is contained in:
TrustedSec 2016-04-18 20:48:10 -04:00
parent b58f4d9580
commit ffcab20d47
2 changed files with 2 additions and 2 deletions

View file

@ -260,7 +260,7 @@ def print_error(message):
def get_version():
define_version = '7.0.4'
define_version = '7.0.5'
return define_version
class create_menu:

View file

@ -65,7 +65,7 @@ filewrite.close()
if attack_vector == "tabnabbing":
# grab favicon
favicon = urllib.request.urlopen("%s/favicon.ico" % (URL))
favicon = urllib.urlopen("%s/favicon.ico" % (URL))
output = open(setdir + '/web_clone/favicon.ico', 'wb')
output.write(favicon.read())
output.close()