Forum Moderators: open

Message Too Old, No Replies

The Informant

         

Froggyman

6:15 pm on Jan 28, 2001 (gmt 0)



Well I banned 216.167.97.169 last night and waited for the reaction. Sure enough, I was hit by The Informant [informant.dartmouth.edu], a robot managed by Dartmouth Colledge. It does not obey the RES.

Session Log:
A visitor from cosmo.cs.dartmouth.edu (129.170.213.140) arrived from informant.dartmouth.edu/, and at 3:24:37 AM on Sunday, January 28, 2001. This visitor used The Informant.

Fusioneer

4:47 am on Jan 29, 2001 (gmt 0)

10+ Year Member



I've had the Informant hit a few sites as well, monitoring certain pages:

2001-01-17 06:10:59 cosmo.cs.dartmouth.edu - GET /index.html 200 0 13242 172 300 HTTP/1.0 The+Informant - [informant.dartmouth.edu...]

2001-01-20 04:42:48 cosmo.cs.dartmouth.edu - GET /index.html 200 0 13242 172 371 HTTP/1.0 The+Informant - [informant.dartmouth.edu...]

It annoys me and I am considering banning the UA and IP of the Informant server.

Anyone else doing this?

BoneHeadicus

5:03 am on Jan 29, 2001 (gmt 0)

10+ Year Member



Its the bot brigade.

Just program your own personal web bot and let it rip.

Irritate your favorite webmaster.
Spy on your favorite forum. Keep your competitors jumping.
With web bots you can generally waste bandwidth for no particular reason.

Froggyman

6:01 am on Jan 29, 2001 (gmt 0)



I would email Dartmouth College and try having them remove your sites from the Informant list first. Banning IMHO is a last resort. Also I use JavaScript to ban individuals from sensitive areas of my site (e.g. message boards) which still allows them to check out other pages. If they figure out how to defeat that, I ban them completely.

Marcia

10:46 am on Jan 29, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Froggyman is that a custom Javascript or is it generally available?

Froggyman

8:41 pm on Jan 29, 2001 (gmt 0)



Place the following code on the top of the page you are banning from an unwanted visitor.

<script language="JavaScript">
// IP Redirect
var ip = '<!--#echo var="REMOTE_ADDR"-->' // ** Do Not Modify This Line **
if (ip == '00.00.00.00') {
alert("ACCESS DENIED!");
if (confirm("You are not authorized to view this web site!"))
{location.href="http://www.anywhere.com/security.html" }
else
{ ("ACCESS DENIED!");
{location.href="http://www.anywhere.com/security.html" }} }
</script>

Replace 00.00.00.00 with their IP address.

Replace anywhere.com with your domain. Create a short security.html page to redirect them to. I like to place this same code on the bottom of the page they are redirected to. This will cause their browser to hang and they will have no choice but to Ctrl+Alt+Del to close the browser. Works with IE and NS. Haven't tried it with other browsers.

Haven't had a surfer savvy enough to bypass it yet although it would not be dificult for someone to do.

Froggyman

8:43 pm on Jan 29, 2001 (gmt 0)



Sorry, I didn't disable the Smileys!

<script language="JavaScript">
// IP Redirect
var ip = '<!--#echo var="REMOTE_ADDR"-->' // ** Do Not Modify This Line **
if (ip == '00.00.00.00') {
alert("ACCESS DENIED!");
if (confirm("You are not authorized to view this web site!"))
{location.href="http://www.anywhere.com/security.html" }
else
{ ("ACCESS DENIED!");
{location.href="http://www.anywhere.com/security.html" }} }
</script>

icehousedesigns

3:11 am on Feb 6, 2001 (gmt 0)



Can't they just disable Javascript and get in? Wouldn't a PHP or SSI include do the job more effectively?

:)

Froggyman

4:36 am on Feb 6, 2001 (gmt 0)



Fusioneer-

Not every webmaster has a server that allows SSI, PHP- some don't even allow CGI-BIN. Like I said, it is a nice way of banning a surfer from one area of a website while allowing them to visit other areas. I know a couple of webmaster's that utilize freebie boards that use this script. It's better security than none at all.

The script could be rendered useless by disabling javascript but most of your everyday internet surfers don't even know what javascript is, much less how to disable it.

icehousedesigns

9:31 pm on Feb 6, 2001 (gmt 0)



I just read something interesting. You can block or allow certain user agents if you are using the apache web server. IP's I knew you could, but user agents I didn't know. You should be able to do this using allow in the .htaccess file.

[httpd.apache.org...]

Example:

SetEnvIf User-Agent ^Webzip
<Directory /www3/icehousedesigns/>
Order Allow,Deny
Allow from=all
Deny from env=Webzip
</Directory>

volatilegx

4:16 pm on Jul 25, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



icehousedesigns,

I don't think the <directory > directive works in .htaccess files... you should use the <files > directive instead.

See [webmasterworld.com...]

volatilegx

5:50 pm on Jan 7, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



oh yeah, one more thing... using JavaScript will not ban any bots from your site. Most bots don't interpret JavaScript. You have to user server side code like Perl or Apache mods to ban bots.

KodeKrash

10:22 pm on Jan 14, 2002 (gmt 0)

10+ Year Member



Just a sidenote, but I wanted to point out a couple things about many of the spiders and bots that I have worked with at all.

1) no support for client side script such as JS
2) ignore, or have ways to ignore robots.txt
3) change user agent identity

For spider/bot developers, getting the desired information is normally all that matters. Many don't bother with robots.txt and similar things.