Update server.py

This commit is contained in:
Namhyeon Go 2024-02-19 15:06:16 +09:00 committed by GitHub
parent 872c9c2e3e
commit 0d3ae9d2a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -177,7 +177,8 @@ def proxy_check_filtered(data, webserver, port, scheme, method, url):
print ("[*] Found ID: %s" % (', '.join(matches))) print ("[*] Found ID: %s" % (', '.join(matches)))
filtered = not all(map(pwnedpasswords_test, matches)) filtered = not all(map(pwnedpasswords_test, matches))
# f: download_base64string # check an attached images
if truecaptcha_userid != '':
def download_base64string(url): def download_base64string(url):
try: try:
response = requests.get(url) response = requests.get(url)
@ -188,7 +189,6 @@ def proxy_check_filtered(data, webserver, port, scheme, method, url):
except: except:
return None return None
# check an attached images
urls = [] urls = []
if not filtered: if not filtered:
urls = re.findall(r'https?://[^\s]+?\.webp\b', text) urls = re.findall(r'https?://[^\s]+?\.webp\b', text)