Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> NukeSentinel(tm)
Author Message
captureroftyme
New Member
New Member



Joined: Jan 08, 2005
Posts: 19

PostPosted: Sat Jan 08, 2005 9:26 am Reply with quote

Hey all, i just got sentinel installed and it already blocked an ip from trying to get info from my admin section. The ip is 66.249.66.39 , I looked it up and it says google, but is this a google bot or an intruder?
If its a google bot, I DO want them to check my site, not sure about my admin stuff though. But if this is a normal thing, like google spiders, I want it to be able to index my site, so how do I unblock it?
 
View user's profile Send private message
manunkind
Client



Joined: Apr 26, 2004
Posts: 368
Location: Albuquerque, NM

PostPosted: Sat Jan 08, 2005 10:56 am Reply with quote

That is Google. What do you have in your robots.txt file?
 
View user's profile Send private message Visit poster's website
captureroftyme







PostPosted: Sat Jan 08, 2005 12:30 pm Reply with quote

This is a copy of my robots.txt file

User-agent: Mediapartners-Google*
Disallow:
User-agent: *
Disallow: admin.php
Disallow: /admin/
Disallow: /images/
Disallow: /includes/
Disallow: /themes/
Disallow: /blocks/
Disallow: /modules/
Disallow: /language/

Can I get rid of the robot.txt file completely, I mean I know I can, but what will be the result?
 
Nuke_Royal
New Member
New Member



Joined: Nov 20, 2004
Posts: 16

PostPosted: Sat Jan 08, 2005 6:09 pm Reply with quote

that they end up spidering your admin panel lol
and you get nice direct hits to your admin...
but hey it is traffic....

_________________
All we want is knowledge.
And if knowledge is power .
We should be considered dangerous.
<b>Beware of false knowledge;
it is more dangerous than ignorance</b> [ Only registered users can see links on this board! Get registered or login! ] 
View user's profile Send private message Visit poster's website
captureroftyme







PostPosted: Sat Jan 08, 2005 7:27 pm Reply with quote

Great, TY. Now how do i unban that google bot?
 
captureroftyme







PostPosted: Thu Jan 13, 2005 9:58 am Reply with quote

Sentinel just caught another one trying to access my admin panel, but they were trying to look in the flazh nav box I have. Is this a normal thing, I mean should they be doing this and is it dangerous to my site?
The new IP it caught was 66.249.65.165. If this is normal for search engines, then how do I unban them?
 
TheosEleos
Life Cycles Becoming CPU Cycles



Joined: Sep 18, 2003
Posts: 960
Location: Missouri

PostPosted: Thu Jan 13, 2005 12:19 pm Reply with quote

Go into Sentinel and the blocked IP menu. Choose display blocked IP's and find your ip and remove it.

If you are also writing to .htaccess you will need to remove the ip from there too.

_________________
http://jamesdibben.com 
View user's profile Send private message Visit poster's website AIM Address ICQ Number
captureroftyme







PostPosted: Sun Jan 16, 2005 2:09 am Reply with quote

Ok, I was able to unban the google bots, but it just keeps banning them. I added googles ip range to the protected list and it STILL bans them! How do I keep it from banning the google bots? I need them to be able to spider my site.
 
captureroftyme







PostPosted: Sun Jan 16, 2005 10:00 pm Reply with quote

Where can I find an uninstall script, or directions. If this thing is going to ban google everytime they try to index me, and there is no way to unban them and KEEP them unbanned, then I dont want it.
Please tell me how to uninstall sentinel.
 
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Sun Jan 16, 2005 11:04 pm Reply with quote

You do not need to uninstall NukeSentinel. Google and Yahoo come stock and standard protected ranges. In your protected range admin panel, just add any ranges that you need. If those ranges are already in there, then you have to make sure that you don't have the IP's in the ban table nor in .htaccess.
 
View user's profile Send private message
captureroftyme







PostPosted: Sun Jan 16, 2005 11:52 pm Reply with quote

I added them to the protected range, removed them from the banned ip list, and removed them from the htaccess file. But, it still keeps banning them.
 
Raven







PostPosted: Mon Jan 17, 2005 4:40 am Reply with quote

If you are not using NukeSentinel v2.1.3, please upgrade and see if you still have the problem.
 
captureroftyme







PostPosted: Mon Jan 17, 2005 1:08 pm Reply with quote

I am using v2.1.3 and I got this morning and all 3 of the google bots were banned AGAIN! Please tell me how to keep them from being banned or tell me how to uninstall this thing.
 
truckerclock
New Member
New Member



Joined: Jan 18, 2005
Posts: 7

PostPosted: Tue Jan 18, 2005 4:47 am Reply with quote

I am getting the same thing. I have to turn off the admin ban to allow google through. I have admin.php blocked in the .htaccess file but somehow they get through and get banned. I hope there is a resolution for this.
 
View user's profile Send private message
Raven







PostPosted: Tue Jan 18, 2005 5:13 am Reply with quote

captureroftyme wrote:
I am using v2.1.3 and I got this morning and all 3 of the google bots were banned AGAIN! Please tell me how to keep them from being banned or tell me how to uninstall this thing.
Reverse your installation steps.
 
Raven







PostPosted: Tue Jan 18, 2005 5:19 am Reply with quote

truckerclock wrote:
I am getting the same thing. I have to turn off the admin ban to allow google through. I have admin.php blocked in the .htaccess file but somehow they get through and get banned. I hope there is a resolution for this.
Have you made sure that your robots.txt has, at a minimum, these lines:

User-agent: *
Disallow: admin.php
Disallow: /admin/
 
truckerclock







PostPosted: Tue Jan 18, 2005 8:23 am Reply with quote

It has
Code:
User-agent: Mediapartners-Google*

Disallow:


User-agent: *
Disallow: /admin
Disallow: admin.php



Is that right?
 
Raven







PostPosted: Tue Jan 18, 2005 8:30 am Reply with quote

I had problems with these lines:
User-agent: Mediapartners-Google*
Disallow:

That is your problem, imo. You are telling Google that it has access to everything at your site. remove these lines:
Code:
User-agent: Mediapartners-Google* 

Disallow:


That should fix it. You could also do
Code:
User-agent: Mediapartners-Google* 

Disallow: /admin
Disallow: admin.php
 
truckerclock







PostPosted: Tue Jan 18, 2005 8:47 am Reply with quote

Thanks for the quick reply. I have removed those two lines. I should know within an hour or so if that fixes it.
 
captureroftyme







PostPosted: Fri Jan 21, 2005 7:03 am Reply with quote

I finally got it to stop banning them. I had added googles ip range to the protected ip range once but it didnt register or something. I added it again and it has been 3 days since it has banned anyone
 
truckerclock







PostPosted: Fri Jan 21, 2005 8:03 am Reply with quote

I removed the two lines specified by raven from the robots.txt file and added the IP's and have been okay also since.
 
Racine
New Member
New Member



Joined: Aug 07, 2004
Posts: 8

PostPosted: Tue Feb 08, 2005 10:45 am Reply with quote

Raven wrote:
You do not need to uninstall NukeSentinel. Google and Yahoo come stock and standard protected ranges. In your protected range admin panel, just add any ranges that you need. If those ranges are already in there, then you have to make sure that you don't have the IP's in the ban table nor in .htaccess.


I just installed Nuke Sentinel 2.1.1. I was referred to this post, as Google is blocked from "harvesting" news from my site.

I didn't have anything in the Protested Range menu. So I added some IP ranges which I thought weere googlebots. But, should there already be IP ranges in the protected IP Range?

Is there a way to add them using the install scripts? I ran an "new install" of Sentinel, when I was really upgrading. Is this why I don't have the ranges in there?
 
View user's profile Send private message Send e-mail Visit poster's website
sixonetonoffun
Spouse Contemplates Divorce



Joined: Jan 02, 2003
Posts: 2496

PostPosted: Tue Feb 08, 2005 11:15 am Reply with quote

I've been kind of searching for those ranges but the best collection I have found on the net is this list of googlebot ips [ Only registered users can see links on this board! Get registered or login! ]

_________________
[b][size=5]openSUSE 11.4-x86 | Linux 2.6.37.1-1.2desktop i686 | KDE: 4.6.41>=4.7 | XFCE 4.8 | AMD Athlon(tm) XP 3000+ | MSI K7N2 Delta-L | 3GB Black Diamond DDR
| GeForce 6200@433Mhz 512MB | Xorg 1.9.3 | NVIDIA 270.30[/size:2b8 
View user's profile Send private message
psynegy
New Member
New Member



Joined: Mar 02, 2005
Posts: 1

PostPosted: Wed Mar 02, 2005 12:27 pm Reply with quote

I use Gmail (google e-mail) and i recived a link to a website with Sentinal installed and it banned me automatically. And now I cannot acess this website, unless I get a response from the owner of this website. Does this help at all? It may be that gmail uses a file to link to the website that the link points to therefore acting as a possible security threat as it probably uses the method; post. Please tell me if this the link to your website so I can do a test email me the link at [ Only registered users can see links on this board! Get registered or login! ]
 
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> NukeSentinel(tm)

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©