Results 1 to 2 of 2

Thread: cPanel Brute Force Attack

  1. #1
    Join Date
    Jan 2007
    Location
    Baltimore, MD
    Beans
    841
    Distro
    Ubuntu

    Re: cPanel Brute Force Attack

    what is the error message you get when trying to access cPanel from ubuntu?

  2. #2
    Join Date
    Oct 2005
    Location
    Lab, Slovakia
    Beans
    10,791

    Re: cPanel Brute Force Attack

    When you run a public server, you should always install a rate limit rule in order to guard against brute forcers:

    Code:
    # General new connection rate limiting for DOS and Brute Force protection
    iptables -I INPUT -p TCP -m state --state NEW -m limit --limit 30/minute --limit -burst 5 -j ACCEPT
    It will slow down continuous retries from the same source address, without affecting normal operation.

    Cheers,

    Herman

Bookmarks

Posting Permissions

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