mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-11-23 02:09:38 +00:00
d4e78d1b1b
this bumps docker image base to ubuntu 24.04 |
||
---|---|---|
.. | ||
confusables.txt | ||
HomoglyphConverter.csproj | ||
Normalizer.cs | ||
readme.md |
Homoglyph Converter
This is a straight up implementation of the recommended confusable detection algorithm. It is mainly used to check for mod impersonation.
You can get the latest version of the mappings from the Unicode.org. You'll need to manually gzip it for embedding in the resources.
Code is split in two parts:
-
Builder will load the mapping file from the resources and will build the mapping dictionary that can be used to quickly substitute the character sequences.
One gotcha is that a lot of the characters are from the extended planes and require use of surrogate pairs, so we convert them to UTF32 and store as
uint
. -
Normalizer implements the mapping and reducing steps of the algorithm