Update server.py

This commit is contained in:
Namhyeon Go 2024-02-19 15:21:18 +09:00 committed by GitHub
parent 525bdf5998
commit 393e8a8917
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -196,7 +196,9 @@ def proxy_check_filtered(data, webserver, port, scheme, method, url):
for url in urls:
if not filtered:
base64string = download_base64string(url)
filtered = truecaptcha_solve(base64string) in ['ctkpaarr', 'SPAM']
solved = truecaptcha_solve(base64string)
print ("[*] solved: %s" % (solved))
filtered = solved in ['ctkpaarr', 'SPAM']
# take action
if filtered: