Text Obfuscation

Annodated

Newbie
Joined
Sep 19, 2017
Messages
21
Reaction score
2
Im curious if anyone knows how to obfuscate text in the sense that I can take a single word or phrase

example: Dog

And have 50 seperate versions of this word that are unidentifiable and unique that are not able to be indexed by engines
 
Like a hash function?
 
Like a hash function?
Like all of these words would be unique and similar in their own way leaving a different footprint
Dog
Dog
Dog

almost like they are a differnent font but all look similar but not able to be blacklisted since they are technically unique. Hard to explain my though process
 
Try with character map if you're on windows?
Not sure what for is this tho.
 
You can easily do that with PHP. You need for each A-Z a-z character add all possible chars from other languages, in an array and then replace your input string with all possible combinations. Post in HAF if you want it done.
 
well if you want to change the text but still have it readable by humans then you could code a function that places typos into your words. of course the typos have to make sense (neighbour keyboard characters). could be realized with character mappings and with random generator about the position.
 
Back
Top