... never hear this term before >,< ...
At the first time, some plurker set their status about Computer Security, especially their homework's topic. Hmmmmmm, I don't care~e~e~e~e~eee.... (singing 2NE1's song).
People always do like this: ask first before learning. Bad habit..
Then somebody chatted and asked about email obfuscator and i started to find out what is the meaning of that term. These are some explanation about that:
email : electronic mail, bla bla bla....
obfuscate : make unclear
email obfuscator : is tool for webmasters that obfuscates e-mail addresses that you enter, making them less vulnerable to spammers who use e-mail harvesting software, also called spam-bots
[tried some online email obfuscator (google keyword : "email obfuscator")]
~Ahaaa~ i got it.. It is like encode-decode or encrypt-decrypt theory. Usually, email obfuscator is generate into:
** ASCII representation -- i couldn't find the right pattern, aaaaarrrrgh....
** Unicode representation -- simple one
** any others?
Let's analyze this experiment :D
email address : lee@gmail.com
obfuscated email :
'\u006c\u0065\u0065\u0040\u0067\u006d\u0061\u0069\u006c\u002e\u0063\u006f\u006d'
>> '\u006c' == 'l'
>> '\u0065' == 'e'
>> '\u0040' == '@'
Yap yap yap, 'lee@gmail.com' generated into obfuscated email address.
Then, what? Is this experiment could explain the real function???
(i love "then, what?" moment, ha3..)
Remember about spam-bots..
They catch email address from the source code, but they couldn't (or not yet) detect those real email address, because its generated into obfuscated one.
How about the user itself?
~Tadaaa~ we still get the right email address : lee@gmail.com
Email obfuscator is trickier then spam-bots, right?
oui... :)
ReplyDelete@bay the way
ReplyDeletehellooo, buddies....
cara bikine gmn????
ReplyDelete@wkwkwkwkw
ReplyDeletethat's easy, right?
first, you must learn about email obfuscator :D
I think it focused on converting each character of email address into Unicode character....
ReplyDeletemaybe you can try this one
http://www.codehouse.com/webmaster_tools/email_obfuscator/
remember,
ReplyDeletenot only Unicode representation, cause I found the ASCII too
yes... that's correct..
ReplyDeleteI found some too... :D
@bay
ReplyDeletedo you know the pattern when email obfuscator using ASCII representation?
try this one
http://digitalcolony.com/lab/maskemail/maskEmailASCII.aspx
it convert each character on email address into ascii code...
ReplyDeletefor example
a => a
b => b
c => c
d => d
unfortunately, blogspot automatically convert my encoding above into normal character...
ReplyDeletehere below I gave you the example one more time, with spaces, to avoid blogspot auto convert
a => & # 9 7 ;
b => & # 9 8 ;
c => & # 9 9 ;
d => & # 1 0 0 ;
i see, i see, i see
ReplyDeletepreviously, before i wrote article
i found email obfuscator that obfuscated randomly
(of course with ASCII representation)
1. input: capucinno, output: bla bla bla
2. input: capucinno, output: ble ble ble
3. input: capucinno, output: bli bli bli
so, i couldn't find the right pattern
at that time, i didn't know too if ASCII code had prefix &#..
now, i get it, thanks....
yup, the prefix is used to make those ASCII code readable to the browser.
ReplyDeleteYou're welcome.