Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21

Thread: Hacking with Google!

  1. #11
    Banned
    Join Date
    Nov 2005
    Posts
    62
    a decent google security tutorial was posted by soda last year to prevent crawlers from caching files like those mentioned. read more here: http://www.antionline.com/showthread...hreadid=260714

  2. #12
    Banned
    Join Date
    Nov 2005
    Posts
    62
    a decent google security tutorial was posted by soda last year to prevent crawlers from caching files like those mentioned. read more here: http://www.antionline.com/showthread...hreadid=260714

  3. #13
    Senior Member Deeboe's Avatar
    Join Date
    Nov 2005
    Posts
    185
    Hello,

    Just a sidebar, if you ever find a website of yours on Google, or information on Google you do not want there, go to the following site: http://www.google.com/webmasters/remove.html

    According to the website, the following actions can be taken:

    - Remove your entire website
    - Remove part of your website
    - Remove snippets
    - Remove cached pages
    - Remove an outdated ("dead") link
    - Remove an image from Google's Image Search
    - Remove a blog from Blog Search
    - Remove a RSS or Atom feed (i.e., block Feedfetcher)
    - Remove transcoded pages
    FYI, remove it from your OWN website first, otherwise Google will pick it right back up again. Also, this will only remove it from Google, not the other search engines!

    -Deeboe
    If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle.
    - Sun Tzu, The Art of War

    http://tazforum.**********.com/

  4. #14
    Senior Member Deeboe's Avatar
    Join Date
    Nov 2005
    Posts
    185
    Hello,

    Just a sidebar, if you ever find a website of yours on Google, or information on Google you do not want there, go to the following site: http://www.google.com/webmasters/remove.html

    According to the website, the following actions can be taken:

    - Remove your entire website
    - Remove part of your website
    - Remove snippets
    - Remove cached pages
    - Remove an outdated ("dead") link
    - Remove an image from Google's Image Search
    - Remove a blog from Blog Search
    - Remove a RSS or Atom feed (i.e., block Feedfetcher)
    - Remove transcoded pages
    FYI, remove it from your OWN website first, otherwise Google will pick it right back up again. Also, this will only remove it from Google, not the other search engines!

    -Deeboe
    If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle.
    - Sun Tzu, The Art of War

    http://tazforum.**********.com/

  5. #15
    Leftie Linux Lover the_JinX's Avatar
    Join Date
    Nov 2001
    Location
    Beverwijk Netherlands
    Posts
    2,534
    I'd rather then removing those pages make 'm do a permanent redirect..
    Searchengines will (usualy delist 'm and use the new url they point to)..

    Such redirects are a lot more friendly then a 404 error to innocent passers by..
    And making 'm redirect to your site's AUP also might scare scriptkiddies

    There are loads of ways you can make those permanent redirects.. php imho is the easiest..
    PHP Code:
    <?php
     header 
    ('HTTP/1.1 301 Moved Permanently');
     
    header ('Location: http://domain.tld/page' );
     exit;
    ?>
    ASCII stupid question, get a stupid ANSI.
    When in Russia, pet a PETSCII.

    Get your ass over to SLAYRadio the best station for C64 Remixes !

  6. #16
    Leftie Linux Lover the_JinX's Avatar
    Join Date
    Nov 2001
    Location
    Beverwijk Netherlands
    Posts
    2,534
    I'd rather then removing those pages make 'm do a permanent redirect..
    Searchengines will (usualy delist 'm and use the new url they point to)..

    Such redirects are a lot more friendly then a 404 error to innocent passers by..
    And making 'm redirect to your site's AUP also might scare scriptkiddies

    There are loads of ways you can make those permanent redirects.. php imho is the easiest..
    PHP Code:
    <?php
     header 
    ('HTTP/1.1 301 Moved Permanently');
     
    header ('Location: http://domain.tld/page' );
     exit;
    ?>
    ASCII stupid question, get a stupid ANSI.
    When in Russia, pet a PETSCII.

    Get your ass over to SLAYRadio the best station for C64 Remixes !

  7. #17
    Senior Member Deeboe's Avatar
    Join Date
    Nov 2005
    Posts
    185
    Originally posted here by the_JinX
    I'd rather then removing those pages make 'm do a permanent redirect..
    Searchengines will (usualy delist 'm and use the new url they point to)..

    Such redirects are a lot more friendly then a 404 error to innocent passers by..
    And making 'm redirect to your site's AUP also might scare scriptkiddies
    Thanks for that Jinx, that is extremly useful. Only issue I have with that is the caching that Google does. They will cache old pages... that includes pages that you are redirecting. You should contact Google regardless to have those removed... in addition to the redirect.

    -Deeboe
    If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle.
    - Sun Tzu, The Art of War

    http://tazforum.**********.com/

  8. #18
    Senior Member Deeboe's Avatar
    Join Date
    Nov 2005
    Posts
    185
    Originally posted here by the_JinX
    I'd rather then removing those pages make 'm do a permanent redirect..
    Searchengines will (usualy delist 'm and use the new url they point to)..

    Such redirects are a lot more friendly then a 404 error to innocent passers by..
    And making 'm redirect to your site's AUP also might scare scriptkiddies
    Thanks for that Jinx, that is extremly useful. Only issue I have with that is the caching that Google does. They will cache old pages... that includes pages that you are redirecting. You should contact Google regardless to have those removed... in addition to the redirect.

    -Deeboe
    If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle.
    - Sun Tzu, The Art of War

    http://tazforum.**********.com/

  9. #19
    AFLAAACKKK!!
    Join Date
    Apr 2004
    Posts
    1,066
    This is nothing new... There are a couple of google hacking tutorials here on AO... One of them was written by me last year...
    I am the uber duck!!1
    Proxy Tools

  10. #20
    AFLAAACKKK!!
    Join Date
    Apr 2004
    Posts
    1,066
    This is nothing new... There are a couple of google hacking tutorials here on AO... One of them was written by me last year...
    I am the uber duck!!1
    Proxy Tools

Posting Permissions

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