mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-12-14 15:02:33 +00:00
Added better redirect handling for gmail.com
This commit is contained in:
parent
91c7bcf740
commit
406192b2d1
1 changed files with 4 additions and 0 deletions
|
@ -437,6 +437,10 @@ try:
|
|||
if match2:
|
||||
URL = ("https://login.facebook.com/login.php")
|
||||
|
||||
# changed based on new landing page for gmail.com
|
||||
match3 = re.search("gmail.com", URL)
|
||||
if match3: URL = ("https://accounts.google.com")
|
||||
|
||||
filewrite.write("\nURL=%s" % (URL))
|
||||
filewrite.close()
|
||||
|
||||
|
|
Loading…
Reference in a new issue