From 5bc884c9e4f37ae52ac2968fd8cb3124b998ae10 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Wed, 21 Feb 2024 16:10:05 +0900 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce64cb8..12f5fe8 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ For example, build a simple web debugging proxy on the shared servers. ### Spam filtering strategy * [K-Anonymity](https://en.wikipedia.org/wiki/K-anonymity) test - Estimating whether the characters has been arranged by humans. (use [Have I Been Pwned](https://haveibeenpwned.com/Passwords)) * Not CAPTCHA - Image spam containing characters that look very similar to [CAPTCHA](https://en.wikipedia.org/wiki/CAPTCHA). (use [TrueCaptcha](https://truecaptcha.org/)) -* VowelRatio10 - In characters arranged by humans, there is a high frequency of [vowels](https://en.wikipedia.org/wiki/Vowel) (aeiouy) included in strings that are 10 characters. +* VowelRatio10 - In characters arranged by humans, there is a high frequency of [vowels](https://en.wikipedia.org/wiki/Vowel) (aeiou) and [semivowels](https://en.wikipedia.org/wiki/Semivowel) (wy) included in strings that are 10 characters. * Palindrome5 - Detect [palindromes](https://en.wikipedia.org/wiki/Palindrome) composed of 5 or more characters. * SSL decryption (MITM) when relaying to federated servers.