Update server.py

This commit is contained in:
Namhyeon Go 2024-02-24 20:30:39 +09:00 committed by GitHub
parent 0e1f8b1fb6
commit f4bbcf229c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -211,7 +211,7 @@ def proxy_check_filtered(data, webserver, port, scheme, method, url):
# check ID with VowelRatio10 strategy
def vowel_ratio_test(s):
ratio = calculate_vowel_ratio(s)
return ratio > 0.2 and ratio < 0.7
return ratio > 0.2 and ratio < 0.8
if all(map(vowel_ratio_test, matches)):
score += 1
strategies.append('VowelRatio10')