Banning Yahoo Slurp IPs

Jul 6, 2008

How can i ban Yahoo! Slurp and its IPs using .htacces?

View 3 Replies


ADVERTISEMENT

Banning SSH Abusers

Nov 15, 2007

About a week ago I got logs from the server that looked like this:

unknown (200.87.116.210): 5112 Time(s)
unknown (65.111.177.212): 5005 Time(s)
unknown (bastion.fmg-kopernik.ru): 662 Time(s)
root (bastion.fmg-kopernik.ru): 657 Time(s)

I then turned on the brute force protection cPanel provides, and it went down considerably from there. I'm not concerned at all about it (since the passwords are strong), but I would like to know the best way to determine abusive users (of SSH), and the best way to ban them.

Assuming the server does not have APF installed, or any particular control panel...

View 14 Replies View Related

Server Banning Itself

Dec 20, 2007

Getting these emails, several a day telling me that the server is banning its own allocated IP addresses. Can someone explain what on earth it could possibly be doing to ban its own IP's?

From - Thu Dec 20 16:50:47 2007
X-Account-Key: account3
X-UIDL: GmailId116f88c2a1c060ca
X-Mozilla-Status: 0001
X-Mozilla-Status2: 00000000
X-Mozilla-Keys:
Delivered-To: myemail@gmail.com
Received: by 10.90.78.14 with SMTP id a14cs288558agb;
Thu, 20 Dec 2007 09:14:04 -0800 (PST)
Received: by 10.142.177.7 with SMTP id z7mr183490wfe.47.1198170843836;
Thu, 20 Dec 2007 09:14:03 -0800 (PST)
Return-Path: <root@host.domain.com.br>
Received: from server.domain.com.br (domain.com.br [xxx.xxx64.138])
by mx.google.com with ESMTP id m8si38592roe.1.2007.12.20.09.14.03;
Thu, 20 Dec 2007 09:14:03 -0800 (PST)
Received-SPF: pass (google.com: domain of root@server.domain.com.br designates xxx.xxx.64.138 as permitted sender) client-ip=xxx.xxx.64.138;
Authentication-Results: mx.google.com; spf=pass (google.com: domain of root@server.domain.com.br designates xxx.xxx.64.138 as permitted sender) smtp.mail=root@server.domain.com.br
Received: from root by server.domain.com.br with local (Exim 4.68)
(envelope-from <root@server.domain.com.br>)
id 1J5OyA-0004us-63
for root@server.domain.com.br; Thu, 20 Dec 2007 15:13:39 -0200
To: root@server.domain.com.br
Subject: IP addresses banned on Thu Dec 20 15:13:39 BRST 2007
Message-Id: <E1J5OyA-0004us-63@server.domain.com.br>
From: root <root@server.domain.com.br>
Date: Thu, 20 Dec 2007 15:13:39 -0200
X-AntiAbuse: This header was added to track abuse, please include it with any abuse report
X-AntiAbuse: Primary Hostname - server.domain.com.br
X-AntiAbuse: Original Domain - server.domain.com.br
X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12]
X-AntiAbuse: Sender Address Domain - server.domain.com.br

Banned the following ip addresses on Thu Dec 20 15:13:38 BRST 2007

xxx.xxx64.138 with 151 connections

I have centos 4 / cpanel installed with apf / bfd yet the deny host rules for apf does not show the server IP's listed as banned.

View 2 Replies View Related

Apf Firewall Banning Range

Mar 8, 2007

I need to ban IP range and I inserted say ip 12.44.0.0 in the deny_hosts rules, this should ban range from 12.44 but strange is people from that range still be able to access my site, any idea what went wrong?

View 3 Replies View Related

Iptables And Banning Ip Addresses

Jan 19, 2007

ý'd want to ban some ip addresses and i tried use iptables. But it doesnt work so far.

what i did is:
root/sbin/ iptables -A INPUT -p tcp -s 193.93.236.0/22 -d any/0 -m state --state NEW -j DROP

as seen, i tried to ban an ip range from my box (coz of spam). But it looks that doesnt work.

What i want to do is to prevent wp spammers to post their disgraceful links to my database.

i am using centos.

View 13 Replies View Related

Bash Script - IP Banning With Iptables

Apr 28, 2009

my VPS provided didn't enable a lot of modules and that's why I can use a firewall(csf or apf) and dos deflate script

I need a simple script for it.

First,it has to call this:
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n
then there will be something like:
Number : IP address
20 1.2.3.4
40 1.2.3.5
80 1.2.3.6
and then the bash script has to bann IPs with more than 30 connections(In our case: 1.2.3.5 and 1.2.3.6) with this:
iptables -A INPUT -s IP_FOR_BLOCK -j DROP

View 14 Replies View Related

Banning A Whole Country IP Range From My Website

Oct 28, 2008

I want to stop users from country X from accessing my website, I know I can ban people's IPs but I dont know if it is possible to ban certain geographical area and if so, I haven't got a clue about how to do it.

View 8 Replies View Related

Range Banning With IPSec On Windows Server

Oct 9, 2006

Does anyone know how to range ban IPs using IPsec.

I can enter IPs manually but unable to ban an entire RANGE of ips

i.e. For example 172.10.10.10 - 172.1.1.999

Anyone know?

View 4 Replies View Related

VBulleting Is Triggering Mod_security Rule And Banning People

Jun 23, 2008

I installed mod_security and the 403security rules on my VPS (Centos 4.1, Release version of WHM).

Several vBulletin files, including the ajax quick editor and some vbulletin.org add-ons are triggering this rule and banning members' IPs in CSF:

# Restrict witch content encodings we accept.
#
# TODO Most applications support only two encodings for request bodies
# because that is all browsers know how to produce. If you are using
# automated tools to talk to the application you may be using other
# content types and would want to change the list of supported encodings.
#
# Note though that ModSecurity parses only three content encodings:
# application/x-www-form-urlencoded, multipart/form-data request and
# text/xml. The protection provided for any other type of encoding is
# inferior.
#
# TODO There are many applications that are not using multipart/form-data
# encoding (typically only used for file uploads). This content type
# can be disabled if not used.
#
# NOTE We allow any content type to be specified with GET or HEAD
# because some tools incorrectly supply content type information
# even when the body is not present. There is a rule further in
# the file to prevent GET and HEAD requests to have bodies to we're
# safe in that respect.
#
# NOTE Use of WebDAV requires "text/xml" content type.
#
# NOTE Philippe Bourcier (pbourcier AT citali DOT com) reports
# applications running on the PocketPC and AvantGo platforms use
# non-standard content types:
#
# M-Business iAnywhere application/x-mal-client-data
# UltraLite iAnywhere application/octet-stream
#
SecRule REQUEST_METHOD "!^(?:get|head|propfind|options)$"
"chain, t:lowercase, deny,log,auditlog,status:501,msg:'Request content encoding is not allowed by policy',id:'960010',severity:'4'"
SecRule REQUEST_HEADERS:Content-Type "!(?:^(?:application/x-www-form-urlencoded$|multipart/form-data;)|text/xml)"
I don't know how to decipher this rule to know if just removing it is ok, or if it is serving an important purpose. During a couple hour period it was enabled, that rule only seemed to trigger false alarms.

The above was triggered with calls such as [uri "/forums/ajax.php?do=usersearch"] and [uri "/forums/newreply.php?do=postreply&t=11057"]

What I really don't understand is that I have an .htaccess in place to turn off mod_security for the /forums directory:

<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
I have also had this rule triggered today when someone tried to access : ...

View 0 Replies View Related

Listing/banning Ipv6 Addresses From Netstat Output

Jan 19, 2008

I've been happily banning ip's using the output from

netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1

for over a year now, with iptables. However recently, after upgrading to apache 2.2, the connections in netstat get listed as ipv6. A row can look like this for example:

tcp6 0 0 ::ffff:12.123.123.123:80 ::ffff:12.123.12.:12382 ESTABLISHED-

(actual ip addresses changed)

As you can see, the remote ip address isn't complete, it's cut off, so the script used to sum up connections and insert into iptables isnt doing anything.

View 0 Replies View Related

Yahoo Bot

Jun 25, 2008

For several months the Yahoo bot had been controlled to one visit per 40 seconds with a robots.txt page. Today it is not working and creating several page impressions per minute.

Has anyone seen any new advice on how to control this pesky creature?

This is the file content I have been using:

User-agent: Slurp
Crawl-delay: 40
User-agent: *
Disallow:

View 4 Replies View Related

Yahoo Bot Assault

Jun 2, 2006

My server is being pounded with Yahoo bots, close to 500 or more at a time. They are causing my loads at various times of the day to skyrocket, crashing the mysql server, etc. They have been on my site for about 4 days now and I just dont see why that many bots are needed to crawl a single site for several days.

Is there any way around this without banning their ips? Any way to limit them?

View 4 Replies View Related

Yahoo Sitebuilder

Jun 28, 2008

i want to preview a file in my browser but so far it s not possible i am using yahoo sitebuilder 2.5 and when i m trying to previw the website an erro appears and says that i havent save my site in the write place.. when i do that it says that i haven still save my site in the right place,, i spend about a week of work on it... also i cant publish it.. is there anyway to c the html code or do somthn else?

View 6 Replies View Related

SmarterMail And Yahoo

Nov 21, 2007

I have this strange problem with smartermail, it can send perfectly to hotmail and gmail but when it tried sending to yahoo accounts, there is always a delay and the email end in the bulk folder.

Such problems does not occur with my qmail or icewarp merak. Any idea how to solve? Have already emailed Yahoo hoping to get a whitelisting of my IP. Besides installing domainkeys any other ways?

View 3 Replies View Related

Yahoo Hosting

Jul 6, 2007

Has anyone ever used Yahoo to host their website? I have heard some good and more bad comments about them. I am a rookie at this so my site is going to be pretty basic. How do they rank vs. other hosting companies?

Yahoo has an “easy site creator” tool to make a site with a template like process. Do sites that use these rank as well in search engines as sites built without a template?

View 24 Replies View Related

Choose Yahoo Or Bluehost

Apr 13, 2008

lately yahoo make advancements in their hosting plan,and i want to choose best of yahoo or bluehost. could anyone give me an opinion.

View 14 Replies View Related

Yahoo Hosting Reviews

Jan 8, 2009

yahoo offering unlimited bandwidth and space at very low cost around $50 (2000INR in our currency),is it reliable or not?

Because i have a wallpaper site requires some server resources but not so high.

suggest me,can i take this one?

View 14 Replies View Related

Yahoo Marks It As Spam... Why?

Apr 21, 2008

If I'm not mistaken we have reverse DNS setup and no blacklist entries. Is there any reason why welcome emails from our custom CP are being filtered directly into the Yahoo SPAM box?

Here's the full headers from my personal email. This is the exact message a client would be sent.

From HostVentrilo.com Sun Apr 20 20:38:17 2008
Return-Path: <nobody@web.teamspeakhost.com>
Authentication-Results: mta105.rog.mail.scd.yahoo.com from=hostventrilo.com; domainkeys=neutral (no sig)
Received: from 69.93.229.114 (EHLO web.teamspeakhost.com) (69.93.229.114)
by mta105.rog.mail.scd.yahoo.com with SMTP; Sun, 20 Apr 2008 20:38:18 -0700
Received: from nobody by web.teamspeakhost.com with local (Exim 4.68)
(envelope-from <nobody@web.teamspeakhost.com>)
id 1JnmrB-0007AT-P3
for xxxxx@rogers.com; Sun, 20 Apr 2008 23:38:17 -0400
Received: from phpmailer ([67.204.23.77])
by www.hostventrilo.com with HTTP (PHPMailer);
Sun, 20 Apr 2008 23:38:17 -0400
Date: Sun, 20 Apr 2008 23:38:17 -0400
To: Jeff Piper <xxxxx@rogers.com>
From: "HostVentrilo.com" <info@hostventrilo.com>
Subject: Ventrilo Server Information
Message-ID: <edee9a956937977bcb723593ae6938a5@www.hostventrilo.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="utf-8"
Content-Length: 567
My only guess would be the PHP programming of the mailer code?

View 14 Replies View Related

Yahoo : Spam Emails ?

Sep 18, 2006

Some of my emails send to the clients who are using Yahoo's email is stored in their " Bulk " folder, so Yahoo is considering my email as spamer althought i'm not. So do you know how can i fix it ? Do i need to contat Yahoo about this matter ?

View 1 Replies View Related

Hotmail - Yahoo Mail

Mar 10, 2008

Nowadays it's everyone's headache for sending mails to hotmail and yahoo i guess. I am having the same problem.

I add the domainkey to domains, but when i send mail to yahoo it drops to spam.

I didn't tried it with hotmail, but reason for dropping spam at yahoo is probably because of no spf record.

I am having a bit trouble with setting spf. I read some documents and my mind is messed up, i can't figure out what to do.

My server's ip address is : xx.xx.xx.xx
My server's hostname is : server.x.com

and i have domains like , y.com, z.com, f.com bla bla that wants to send mail to hotmail.

Those sites are using different ips, but each ip is using more than 1 site,

I read that i need to setup reverse dns, but one article says i should do it for my hostname, other one says for mail server : mail.x.com.

So first question how should i setup reverse dns?

Second question, it says i need to add spf record for my domain, does it mean my hostname, or the domain i want to send mail ?

v=spf1 a mx ptr ~all
and than i should fill form at https://support.msn.com/eform.aspx?p...rid&ct=eformts

and than wait.

So i will be glad if someone can answer my questions and tell me if there is any missing parts.

View 4 Replies View Related

Get Mail Delivered To Yahoo

Aug 23, 2007

I am looking for an expert who can help me configure my dedicated server to ensure my email gets delivered to Yahoo.

I have an autoresponder script hosted on the server. The script was previously hosted with another host and I got excellent deliverability to Yahoo, Gmail, Hotmail and everyone else.

Unfortunately the volume of mail was too large for that host, so now I have a dedicated server. Since I moved to the dedicated server (two weeks ago), my mail does not get delivered to Yahoo. It doesn't even go into the junk mail folder. It just disappears.

I am very strictt about using confirmed optin for my lists, so it's not a blacklist issue. Right from day one on the new server, my mail did not reach Yahoo. So it must be the way my server is set up.

If there is someone who knows how to resolve this, I am willing to pay you to solve the problem for me. Or, if there is anyone who can give me some advice, that would be much appreciated.

View 14 Replies View Related

Yahoo Webhosting 403 Forbidden

Nov 22, 2008

Im having problem with Yahoo web hosting. All .php pages is not working.. it will give you an error "403 Forbidden".

I cant even access my domain webhosting control panel..

I called Yahoo Customer Service and it will take 2-3 days to fix. Sad to know my website is down almost 1 week.

Can anyone tell me what's really going on with Yahoo Webhosting? Do they care their customers?

View 11 Replies View Related

Yahoo Is Refusing My Emails

May 14, 2007

I have noticed that Yahoo is refusing emails coming from the IP of my server. I have written them and I got this email, has this happened to you too? Any recommendations? ...

View 9 Replies View Related

Google And Yahoo Robots Ips

Apr 28, 2009

Do you know what is most important search engine robot ips?

I need to all serach engine robot ips too firewall white list.

View 3 Replies View Related

Yahoo Email Defer

Apr 12, 2008

I have a problem with Yahoo defering my email from servers for weeks!

I've submit to [url]

from

[url]

MANY TIMES! this is getting me frustrated. what's more.. i try to change my SMTP to a new server (fresh IP within same network in the same DC) and it is ALSO deferred. How do I check if this has something to do with a whole block of IP maybe listed in some spam engine or something?

View 2 Replies View Related

How To Get Yahoo To Receive My Emails

Apr 7, 2008

Like so many others I am having the problem in which Hotmail and Yahoo are rejecting emails being sent from my server. I recently changed servers and this is most likely the reason.

While Hotmail hasn't been fixed, they have responded swiftly, usually within 6 hours.

I need to contact Yahoo about it but I can't find any information or forms to fill out. Could you please direct me to the correct URL - their site is a complete maze.

View 14 Replies View Related

Server IP Blocked By Yahoo

Nov 4, 2008

Unfortunately yahoo blocked our server ip, so our customer cant send any email to yahoo!
How can fix this issue? Do you have any email or ticket system in yahoo for contant about this issue?

View 4 Replies View Related

Re-routing Yahoo Mail

Apr 23, 2008

business is just getting out of hand. I applied several weeks ago for Whitelist status, and my issues finally went away for a little over a week (though I never received a response to my Postmaster requests). But then today -bam- 100% deferrals for going on 18 hours now, not a single message has gone through. And naturally no two Yahoo servers give me the same error message.

So...

At this point I'm ready to contract out my Outbound mail to Yahoo through a whitelisted 3rd party until I can get this resolved on my end. Would this be reasonable? Is anyone else doing this? I worked with an outsourced SMTP provider in another life for an internal company mailing list with good success.

View 4 Replies View Related

Yahoo Web Hosting With WordPress

Jun 28, 2008

It seems that Yahoo does web hosting, and they offer WordPress as one of their one-click install kinds of things. Given the absolutely absurd responsiveness of yahoo.com, I was curious if anyone actually used them as a webhost?

Their pricing is decent, but I'm wondering about performance? I'm currently with Dreamhost, and I'm okay with them, except that WP performance isn't great (not awful, though, either), despite having wp-cache installed and operational.

So how good it Yahoo's small business webhosting? Their TOS seems pretty generous as well.

[url]

View 11 Replies View Related

Sending To Hotmail, Yahoo Etc

Jul 22, 2008

if there is much i can do to get the mail that gets sent from my server to show up in the inbox of users using a free mail service.

View 2 Replies View Related

Yahoo! Vs. Blue Host

Dec 10, 2008

I am a hobbyist webmaster wanting to start a third website.

As a newbie, I started my website with Yahoo! Small Business. I didn’t know anything about hosting at that time and their ads captivated me. Also, there was confidence in dealing with a billion dollar company.

A couple of months later, when I started my second website I opted for Blue Host because I saw their ad on Word Press and I thought that anybody endorsed by WP would have to be good.

I am now in a position to compare and what I find is this:Yahoo!Cost$11.95 per monthEmails 250 in 24 hoursAdd-On Domains NilSupport Nil (only email)Fantastico Nil (Limited)Non-domain emailsNot permitted.htaccess Not allowedBlue HostCost $6.95 per monthEmails 500 per hour (12,000 in 24 hours)Add-On Domains UnlimitedSupport 24/7 live chatFantastico FullNon-domain emails Permitted.htaccess Allowed
Yahoo! has had its fair share of downtime (a fortnight ago there was a server 500 error which lasted several hours). Also some months ago some of my files were infected by a javascript virus (though this may have been my fault for uploading files without virus protection).

I am quite happy with BH because I am paying less, get unlimited add-on domains (I added four very easily) and get 24/7 chat support (with Yahoo! you only get an automated email response after 24 - 48 hours!)

It is said that you get what you paid for. I am paying Yahoo! more but what am I getting in return which I am not getting from BH?

Or to put it another way: Why would someone (reasonably instructed) opt for Yahoo! over BH and others?

Is Yahoo! just a rip-off or am I missing something here?

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved