1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Coresat.com

Discussion in 'Traffic Analysis' started by iShopHQ, Jan 27, 2005.

  1. #1
    Over the last few days, this web site had been responsible for almost 30% of mt referrers. Yet I can't pin it down to an IP address in my logs, and doing a look up on the domain name gives an IP address that isn't IN my logs.

    Go to the site, adn it it says "Website Suspended".

    Anyone have any info on this?
     
    iShopHQ, Jan 27, 2005 IP
  2. yoook

    yoook Peon

    Messages:
    83
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I guess coresat is not only Your referrer spam. Search in google for "coresat.com" and You'll see.
    Peace
    Yoook
     
    yoook, Jan 27, 2005 IP
  3. iShopHQ

    iShopHQ Peon

    Messages:
    644
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Yeah, I did a bunch of searches to get more info, and it shows up all over the place.

    I just finished writing a script that grabs the referer right off the bat, and if it's coresat, I'm redirecting it back to coresat.com and then ending the session to keep it from taking up any more bandwidth.
     
    iShopHQ, Jan 27, 2005 IP
  4. iShopHQ

    iShopHQ Peon

    Messages:
    644
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #4
    What's the reasoning behind referer spoofing anyway?
     
    iShopHQ, Jan 27, 2005 IP
  5. J.D.

    J.D. Peon

    Messages:
    1,198
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    0
    #5
    If you publish your stats, they get links.

    J.D.
     
    J.D., Jan 27, 2005 IP
  6. iShopHQ

    iShopHQ Peon

    Messages:
    644
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Ah....

    Well, I don't publush my stats and now any traffic with coresat as a referer is automatically redirected to coresat.com. On the up side, it forced me to tinker with my global.asa file, and now I have another weapon in my aresenal.

    "You like apples?"

    "How about them apples?"
     
    iShopHQ, Jan 27, 2005 IP
  7. iShopHQ

    iShopHQ Peon

    Messages:
    644
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #7
    For any ASP folks out there, here's the sub in my global.asa to redirect from foresta referers:


    <script language="vbscript" runat="server">
    sub Session_OnStart
    If INSTR(LCASE(Request.ServerVariables("HTTP_REFERER")),"coresat.com") > 0 Then
    response.redirect("http://www.corestat.com")
    response.end
    End If
    end sub
    </script>

    It's easily adaptable to use against unwanted user agents as well. Instead of HTTP_REFERER, get HTTP_USER_AGENT. If you checking for more than a few, I'd recommend going with a Select Case statement as opposed to an If/Then.
     
    iShopHQ, Jan 28, 2005 IP
  8. Solicitors Mortgages

    Solicitors Mortgages Well-Known Member

    Messages:
    2,217
    Likes Received:
    139
    Best Answers:
    0
    Trophy Points:
    103
    #8
    any non jargon explanations available? Plz ;)

    i have about 80 hits from coresat in the past 3 days.(i barely noticed :eek: )
    ..i dont publish my stats..
    so they get nothing?..am i understanding this right?
    and my stats just go up by 80 hits?

    or is there something more sinister at work here?
     
    Solicitors Mortgages, Feb 3, 2005 IP
  9. J.D.

    J.D. Peon

    Messages:
    1,198
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Not really. I have seen user-agent strings malformed on purpose so that confused log analyzers would drop these records and some hacking attempts would go somewhat unnoticed. Other than this it's just links.

    J.D.
     
    J.D., Feb 3, 2005 IP