+ Reply to Thread
Results 1 to 7 of 7
  1. #1
    Join Date
    Aug 2004
    Location
    London
    Posts
    4,286
    Downloads
    0
    Uploads
    0
    Blog Entries
    30

    Default What to you do about Proxy attack?

    One of my sites seem to be experiencing proxy attack, how do I solve this issue?

  2. WebmasterServe Adverts:
  3. #2

    Default

    I am not sure but are you talking about AdminQuest because I can not get on it at all?

  4. #3
    Join Date
    Aug 2004
    Location
    London
    Posts
    4,286
    Downloads
    0
    Uploads
    0
    Blog Entries
    30

    Default

    Quote Originally Posted by TVDinner View Post
    I am not sure but are you talking about AdminQuest because I can not get on it at all?
    Nothing to do with admin quest, its to do with unscrupulous people using proxy to harm your SERPS

  5. #4

    Default

    Temi, this attack method could do serious demages because the weaker websites can be remove from search engine listings due to the duplicated content. The problem is when a proxy website does not restrict the indexing activity of search engines regarding the proxified content.

    How can you protect your website?

    You need this code
    PHP Code:
    <?php
    $ua 
    $_SERVER['HTTP_USER_AGENT'];
    if(
    stristr($ua'msnbot') || stristr($ua'Googlebot') || stristr($ua'Yahoo! Slurp')){
    $ip $_SERVER['REMOTE_ADDR'];
    $hostname gethostbyaddr($ip);
    if(!
    preg_match("/\.googlebot\.com$/"$hostname) &&!preg_match("/search\.live\.com$/"$hostname) &&!preg_match("/crawl\.yahoo\.net$/"$hostname)) {
    $block TRUE;
    header("HTTP/1.0 403 Forbidden");
    exit;
    } else {
    $real_ip gethostbyname($hostname);
    if(
    $ip!= $real_ip){
    $block TRUE;
    header("HTTP/1.0 403 Forbidden");
    exit;
    } else {
    $block FALSE;
    }
    }
    }
    ?>
    included to the very beginning of the script or add this to the .htaccess file as php_value auto_prepend_file value. The code will validate the search bots in accordance with their host, if they try to index the proxified content they will get 403 server error.:rolleyes:
    More information about the topic can be found in my earlier blogpost.

  6. #5
    Join Date
    Aug 2004
    Location
    London
    Posts
    4,286
    Downloads
    0
    Uploads
    0
    Blog Entries
    30

    Default

    Fantastic Zoli, rep added.

  7. #6
    Join Date
    Sep 2008
    Posts
    323
    Downloads
    0
    Uploads
    0

    Default

    sir can I ask something?

    what do you mean by proxy attack?

  8. #7
    Join Date
    Aug 2004
    Location
    London
    Posts
    4,286
    Downloads
    0
    Uploads
    0
    Blog Entries
    30

    Default

    Some unscrupulous people can get you site content tangled in proxy site, search engines will then penalise you for duplicate content.

+ Reply to Thread

Similar Threads

  1. The ultimate guide to earning money from proxy sites
    By Sabre in forum Site Monetization
    Replies: 5
    Last Post: 05-24-2011, 09:08 AM
  2. Marketing Basics
    By dungdm004 in forum UK Business Forums
    Replies: 12
    Last Post: 04-17-2009, 03:50 PM
  3. Free proxy server what do you use them for?
    By temi in forum General Webmaster Discussions
    Replies: 2
    Last Post: 03-12-2009, 05:43 AM
  4. Baby mauled to death in dog attack is named
    By TeamPlayer in forum Forum Lobby
    Replies: 1
    Last Post: 02-07-2009, 09:56 PM
  5. Proxy List
    By dungdm004 in forum Buy, Sell or Trade
    Replies: 0
    Last Post: 04-30-2008, 05:55 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110