Can someone tell me what this is?

Discussion in 'C#' started by drhfinegifts, Mar 16, 2007.

  1. #1
    I keep getting hits about every 5-10 seconds from http://user/Myads/yahoocpc.asp with ISP of 67.182.103.198.

    Is this some automated program to jack up my Yahoo PPC fees?

    I ran the ISP and it seems to be flagged for some reason, but I can't tell what for. I have blocked it, but am REAL curious as to what this is!
     
    drhfinegifts, Mar 16, 2007 IP
  2. ccoonen

    ccoonen Well-Known Member

    Messages:
    1,606
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    160
    #2
    Probably a competitor trying to get even or something... ask your PPC company(ies) to flag this IP as a cheater and request your money back if this is the case.
     
    ccoonen, Mar 19, 2007 IP
  3. ludwig

    ludwig Notable Member

    Messages:
    2,253
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    225
    #3
    surely it is automated script, it does something on your site. I had to deal with that kind of thing with one of my sites, later I blocked local referers and it worked
     
    ludwig, Mar 24, 2007 IP
  4. webcosmo

    webcosmo Notable Member

    Messages:
    5,840
    Likes Received:
    153
    Best Answers:
    2
    Trophy Points:
    255
    #4
    you can easily use javascript to handle this thing. put this js code on header or the landing page.

    <script language="JavaScript" type="text/JavaScript">
    /**** if any masking used, redirect ***/
    //var refUrl=document.referrer.toLowerCase();
    var refUrl=document.domain.toLowerCase();
    if(refUrl!=null && refUrl.indexOf('webcosmo.com')<0)
    {
    window.location = "http://www.webcosmo.com/";
    //return;
    }
    </script>

    give it a test first. i had some people using domain masking to forward visitors to our site and improve their ranking on search engines. we stopped them this way.
     
    webcosmo, Apr 11, 2007 IP