Recently I've been stumbled with some reports pointing out that there are some spammy/warning redirects in Chevereto. Links that look like this:
Steam (and others) does a similar redirect/info stuff, for example:
(notice how you can put any URL there, difference here is that in Chevereto I base64 encode the actual URL so the target URL is never shown).
Remember that people can provide their personal URL and whatnot? Turns out that some people or bots will try to use your website to spam, to get some juice out of your website, to distribute illegal stuff, whatever. A thing that happens to any website with user-provided data (sad but true).
To avoid spam abuse, Chevereto uses internal 302 redirects so no juice is passed and no final link is exposed. You can know about this here: https://moz.com/blog/301-redirection-rules-for-seo (this works for spammy links that just want your SEO juice). Links containing some malware, virus, etc. will get identified by your web browser (every modern web browser does this) so you don't need to worry about these either.
Unfortunately, it is impossible to determine if a given URL is violating the DMCA because that must be reported by the affected party (copyright owner). If you get a DMCA for these redirects, simply search your DB for the resulting URL (the real URL, not the encrypted URL) and just remove these links and ban the associated IP.
Keep in mind that ANY user-powered website needs to be monitored and that you must perform action when needed (like remove where these links are appearing).
Hope it helps,
Rodolfo.
Code:
https://photoland.io/redirect/aHR0cHM6Ly93d3cuY29vbGFpcnVzYS5jb20v
https://ultraimg.com/redirect/aHR0cHM6Ly93d3cuY29vbGFpcnVzYS5jb20v
https://allthepics.net/redirect/aHR0cHM6Ly93d3cuY29vbGFpcnVzYS5jb20v
https://lightpics.net/redirect/aHR0cHM6Ly93d3cuY29vbGFpcnVzYS5jb20v
https://portfoliodog.com/redirect/aHR0cHM6Ly93d3cuY29vbGFpcnVzYS5jb20v
Steam (and others) does a similar redirect/info stuff, for example:
Code:
https://steamcommunity.com/linkfilter/?url=https://www.coolairusa.com/
Remember that people can provide their personal URL and whatnot? Turns out that some people or bots will try to use your website to spam, to get some juice out of your website, to distribute illegal stuff, whatever. A thing that happens to any website with user-provided data (sad but true).
To avoid spam abuse, Chevereto uses internal 302 redirects so no juice is passed and no final link is exposed. You can know about this here: https://moz.com/blog/301-redirection-rules-for-seo (this works for spammy links that just want your SEO juice). Links containing some malware, virus, etc. will get identified by your web browser (every modern web browser does this) so you don't need to worry about these either.
Unfortunately, it is impossible to determine if a given URL is violating the DMCA because that must be reported by the affected party (copyright owner). If you get a DMCA for these redirects, simply search your DB for the resulting URL (the real URL, not the encrypted URL) and just remove these links and ban the associated IP.
Keep in mind that ANY user-powered website needs to be monitored and that you must perform action when needed (like remove where these links are appearing).
Hope it helps,
Rodolfo.