[Python tool] Anti bot text obfuscator
discuss.privacyguides.net·2h

September 19, 2025, 12:07am 1

Hi

I got pissed by some social media filters content based on keywords (remember when “X” blocked mentions of Mastodon?) or how some companies parse someone’s texts to train AI…

This tool will make life for bots harder.

Yes, I am author. And yes, I allow spreading/using/modifying etc, I am not greedy.

I tried to make it harder to abuse script by blocking some common patterns, but since code is open it is still trivial to bypass.

Here is my tool:

Tool

import re
import sys
import random

CHAR_POOLS = {
"upper": [
"А","Β","Ϲ","Ԁ","Ε","Ғ","Ԍ","Н","Ι","Ј","Κ","Ꮮ","М","Ν","О","Р","Ⴓ","ᖇ","Ѕ","Т","Ս","Ѵ","Ѡ","Χ","Υ","Ζ",
"Ⱥ","Ȼ","Ȩ","Ȟ","ȴ","Ⱥ","Ḿ","Ṅ","Ṍ","Ṗ","Ɋ","Ŕ","Ṡ","ᚦ","Ŧ","Ṳ","Ṽ","Ẃ","Ẍ","Ẏ","Ẑ"
],
"lower": [
"а","Ь","с","ԁ","е","ƒ","ɡ","һ","...

Similar Posts

Loading similar posts...