Community Forums
Connect with us on LinkedIn
Community Notice
+ Reply to Thread
Page 5 of 5 FirstFirst ... 3 4 5
Results 61 to 75 of 75
  1. #61
    Registered User
    Join Date
    Jan 2005
    Posts
    3

    Default

    Looks like a new variant again, we are getting attacked again

  2. #62
    Member
    Join Date
    Feb 2004
    Posts
    64

    Default

    Same thing here. New attack it seems - slows server down a lot even with Timeout set to 10, and apache restarts every 30-60 minutes atm.

  3. #63
    cPanel Partner NOC cPanel Partner NOC Badge
    Join Date
    Feb 2002
    Location
    Pula, Croatia
    Posts
    196
    cPanel/Enkompass Access Level

    DataCenter Provider

    Default

    Yep, same here, but now lowering values does nothing this time :-(

  4. #64
    Member
    Join Date
    Apr 2003
    Location
    Lewisville, Tx
    Posts
    968

    Default

    We are seeing one server that is getting attacked again like this. The mod_sec rules and .htaccess workarounds are not working on this one so far. Another fun week.
    Kris
    NCServ, LLC.
    WebHosting - Dedicated Servers - Colocation
    sales@ncerv.com

  5. #65
    Member
    Join Date
    Jun 2004
    Posts
    102

    Default

    anyone ever figure this out ?

  6. #66
    Member
    Join Date
    Feb 2004
    Posts
    64

    Default

    Seems these "attacks" just disappear after a while...

  7. #67
    Member
    Join Date
    Mar 2003
    Posts
    427

    Default

    Anyone still having these attacks ?

    I have - removed the 2 accounst being attacked and its ok now.
    Not for the clients but for me :-)

    In logs it say xoxoxoxo or **************** you as user agents.

    Server load about 600 and then it's dead.

  8. #68
    nat
    nat is offline
    Member
    Join Date
    Jan 2003
    Posts
    210

    Default

    Quote Originally Posted by jeroman8
    Anyone still having these attacks ?

    I have - removed the 2 accounst being attacked and its ok now.
    Not for the clients but for me :-)

    In logs it say xoxoxoxo or **************** you as user agents.

    Server load about 600 and then it's dead.


    If apache-status shows an IP instead of a ?, you may want to try http://www.nuclearelephant.com/projects/dosevasive/

    Also, if the user agent is "xoxoxoxo" and "**************** you" you may want to try adding the following in a .htaccess file in the users directory:

    SetEnvIfNoCase User-Agent "^xoxoxoxo" deny
    SetEnvIfNoCase User-Agent "^****************" deny
    <Limit GET POST PUT>
    Order allow,deny
    allow from all
    deny from env=deny
    </Limit>

  9. #69
    Member vishwas's Avatar
    Join Date
    Feb 2004
    Location
    Front of PC
    Posts
    61

    Default

    Same problem for me aswell cant block number of IP's

    any fix. ??
    Life is short Have fun.

  10. #70
    Member
    Join Date
    Jun 2004
    Posts
    29

    Default

    I have same problem here, a LT server.

    Does any one found a solution for this issue?...

  11. #71
    Member
    Join Date
    May 2003
    Posts
    208

    Default

    Anyone have a solution to this ?

    Thanks
    Daniel

  12. #72
    Member
    Join Date
    Aug 2005
    Posts
    29

    Default

    Any solution? FDC SERVERS ARE TTACAKED.....

    And?

  13. #73
    cPanel Partner NOC cPanel Partner NOC Badge AndyReed's Avatar
    Join Date
    May 2004
    Location
    Minneapolis, MN
    Posts
    2,223

    Default

    Quote Originally Posted by thewishbone
    Any solution? FDC SERVERS ARE TTACAKED.....
    If your DC doesn't have the mechanism or capabilities to protect your server against malware, DDoS/DoS, viruses, etc. I suggest you find a different company.
    Andy Reed
    RHCE and CCNA
    ServerTune.com

  14. #74
    Member
    Join Date
    Aug 2005
    Posts
    29

    Talking

    Well, resolved , with a trick but i wish that help you guys, seem that all we have to ask to our DC to resolve this.
    Go to : http://fixingtheweb.com/country/blockdoc.html
    And install this tool, (works perfect and resolve the issue while cpanel resolve it)
    The attack (because is a DDOS (write in anyway) attack) comes from an specific country, in my case from TURKEY.
    With the tool check the ip range for the ip attack, and write this to BLOCK all this range:

    iptables -t nat -I PREROUTING -m iprange --src-range xxx.x.x.x-xxx.xx.xxx.xxx -j DROP

    This will block ALL THE IPS from this range, belong sure from your attacker.

    Do the same with all ips from atttacker.

    And thats all.

    When Cpanel resolve the issue, you can unblock all the ips range.

    Now my load is fine, any http load.

    I wish this help you guys. And please dont use this to get money from anybody.

    And sorry if my english isnt the best.

    And about my servers company FDCSERVERS, they are doing the best, like LT, ServerMatrix, etc.
    Last edited by thewishbone; 08-26-2006 at 04:49 PM.

  15. #75
    Registered User
    Join Date
    Nov 2004
    Posts
    4

    Cool

    Turn off KeepAlive in the httpd.conf and restart apache.

    Essentially what the Keepalive does is when a client makes a connection to your webserver, apache sends them the content it requested. At this time, the KeepAlive var is brought into play. If it's active, and has timeout set to it, then it'll maintain a connection with the client for the specified duration, then close up when time expires.

    Normally, this is a good thing, it's a much more efficient than spawning a new connection everytime a request is made.

    Now, factor that in with a ton of requests from owned boxes scanning for vulnerable PHP scripts, and you've got easliy hundreds of unique ips hitting your server and apache maintaining each of those connections for 10 seconds (300 in the default httpd.conf I believe). You can see how it runs through the MaxClients setting pretty quickly now.

    Turning off keepalive in the httpd.conf will go a long way towards mitigating this activity and you can turn it back on later should you like.

    I'd also suggest kicking up the MaxClients setting as well. This number will vary based on the hardware but for this case, 3-400 shouldn't be a problem. You've gotta figure that in this instance, you're not trying to compensate for normal traffic. These scanners aren't pulling images and content, just doing random posts and seeing what bites.

    You can't stop them with iptables rules as the ips will be way to varied to be effective. I go with the policy of getting the garbage traffic in and out as fast as possible. Once you get scanned by a host, it's done with your server and moves on, no point in keeping it around longer than is necessary.

    mod_security would be nice to have setup in this instance, just for helping to make sure that none of the scanners actually exploit what they're trying to.

    Chris Meisinger
    wingsix.com

+ Reply to Thread
Page 5 of 5 FirstFirst ... 3 4 5
Similar Threads & Tags
Similar threads

  1. Replies: 3
    Last Post: 04-19-2010, 03:14 PM
  2. Apache Status and HTTP Requests of "OPTIONS * HTTP/1.0"
    By DReade83 in forum cPanel and WHM Discussions
    Replies: 10
    Last Post: 12-02-2009, 01:47 AM
  3. Apache requests stuck in reading state
    By glansing in forum cPanel and WHM Discussions
    Replies: 0
    Last Post: 12-06-2006, 05:25 PM
  4. Apache Rebuild: "Use System Mysql" and "Mysql Module"
    By fdesign in forum cPanel and WHM Discussions
    Replies: 4
    Last Post: 12-24-2003, 05:14 PM
Linkedin       Facebook       Twitter       RSS       Flickr       YouTube