> Email addresses published on webpages usually need to be protected from email-harvesting spambots. Do they though? I have had my email address published on my website in a I use both Gmail and (for some other addresses) a webmail hosted by a local company which uses some other filter. Both work well, so it's not something only Google can do.
They do. My wife lost her 10-year-old Instagram account to a well crafted phishing attack against an email she had published… Instagram/Meta’s customer support is absolutely atrocious and disgraceful on this front. They basically treat my wife like she’s also a spammer and there’s no way to recover the account or undo any of the changes the spammers made. It’s hilarious how they ask you to “appeal” a ban by clicking…
Protecting your email address via SVG instead of JavaScript
131–140 of 180 posts
Re: Protecting your email address via SVG instead of JavaScript
#132While this obviously (re)introduces JS into the mix, how would a simple compressed string fare against base64 svg embedding?
``` const compressedBase64Svg = '...';
function decompressAndInsertSVG(encodedData) { const decodedData = atob(compressedBase64Svg); const decompressedSvg = decompress(decodedData); const svgContainer = document.getElementById('svgContainer'); svgContainer.innerHTML = decompressedSvg; }
decompressAndInsertSVG(encodedSVG); ```
Re: Protecting your email address via SVG instead of JavaScript
#133> Email addresses published on webpages usually need to be protected from email-harvesting spambots. Do they though? I have had my email address published on my website in a I use both Gmail and (for some other addresses) a webmail hosted by a local company which uses some other filter. Both work well, so it's not something only Google can do.
They do. My wife lost her 10-year-old Instagram account to a well crafted phishing attack against an email she had published… Instagram/Meta’s customer support is absolutely atrocious and disgraceful on this front. They basically treat my wife like she’s also a spammer and there’s no way to recover the account or undo any of the changes the spammers made. It’s hilarious how they ask you to “appeal” a ban by clicking…
Re: Protecting your email address via SVG instead of JavaScript
#134> Email addresses published on webpages usually need to be protected from email-harvesting spambots. Do they though? I have had my email address published on my website in a I use both Gmail and (for some other addresses) a webmail hosted by a local company which uses some other filter. Both work well, so it's not something only Google can do.
My preference is to not have my email harvested at all when possible, even if I don't personally see the spam emails. (I'm not saying it's a critical privacy/security issue, but a preference.)
Re: Protecting your email address via SVG instead of JavaScript
#135Earlier quoted context omitted.
If you self-host your email, you can use "." as a delimiter instead of the "+". People would already need to know they can strip that part...
Sounds good! I might go even further and just use a custom address for each service, i.e. paypal@example.com or something. But self-hosting email is an adventure I'm nervous to embark on.
Re: Protecting your email address via SVG instead of JavaScript
#136Re: Protecting your email address via SVG instead of JavaScript
#137This is a cool trick. The email is in cleartext in the source, meaning mailto works and copy-paste works. But most scrapers probably skip the .svg file.
But they won't as soon as they realize it's just easy to parse text that contains data they're looking for.
Re: Protecting your email address via SVG instead of JavaScript
#138> even when a human visitor has their JavaScript turned off, the email address displayed on the page remains usable NoScript on Firefox with default settings don't render tags (replaces them with placeholders), so this technique doesn't work here. https://imgur.com/2tCAgAf
Re: Protecting your email address via SVG instead of JavaScript
#139> Email addresses published on webpages usually need to be protected from email-harvesting spambots. Do they though? I have had my email address published on my website in a I use both Gmail and (for some other addresses) a webmail hosted by a local company which uses some other filter. Both work well, so it's not something only Google can do.
Re: Protecting your email address via SVG instead of JavaScript
#140> Email addresses published on webpages usually need to be protected from email-harvesting spambots. Do they though? I have had my email address published on my website in a I use both Gmail and (for some other addresses) a webmail hosted by a local company which uses some other filter. Both work well, so it's not something only Google can do.
They do. My wife lost her 10-year-old Instagram account to a well crafted phishing attack against an email she had published… Instagram/Meta’s customer support is absolutely atrocious and disgraceful on this front. They basically treat my wife like she’s also a spammer and there’s no way to recover the account or undo any of the changes the spammers made. It’s hilarious how they ask you to “appeal” a ban by clicking…
You can get it back by paying off a Meta employee through a site like Swapd. It's either that or get your comment to the front page of HN. Those are the only two customer support channels for Meta or Google.