[thelist] Site copied by pirates

VOLKAN ÖZÇELİK volkan.ozcelik at gmail.com
Thu Jun 22 08:01:46 CDT 2006


Yes, referrer check is a good idea:

I do something similar in dot net c#:

global.cs:

        protected void Application_BeginRequest(object sender, EventArgs e)
        {
            //uncomment for debugging (MailHelper is my custom helper
object)

//MailHelper.SendAdministrativeMail("beginrequest:"+Request.Url.ToString());

            string url = Converter.ToLowerCaseURL(Request.Url.ToString());

            if (
                url.IndexOf("example.com") == -1 &&
                    url.IndexOf("example.net") == -1 &&
                    url.IndexOf("example.org") == -1 &&
                    url.IndexOf("123.456.789.123") == -1 /*static ip of the
server*/
                )
            {
                Server.Transfer("/Leecher.aspx"); /* take this you fetcher !
*/
            }
        }

And Leecher.aspx says

"
I AM A ******* BANDWITH LEECHER!
And http://path.to.leecher.com/ belongs to an *** ****!
"

loudly and proudly (with h1 and h2 tags)

Alternatively, you can redirect the user to your products or services page
as a revenge.


Cheers,
-- 
Volkan Ozcelik
+>Yep! I'm blogging! : http://www.volkanozcelik.com/cre8/blog/
+> Going solo in Turkish: http://www.volkanozcelik.com/donkisot/
+> My projects/studies/trials/errors : http://www.sarmal.com/
+> Sardalya JavaScript Library: http://www.sarmal.com/sardalya/



More information about the thelist mailing list