how to detect and block repetitive attacks

Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default how to detect and block repetitive attacks

    Hello,

    Is it possible to detect and block IP addresses that hit my server with
    repetitive (automated) attacks?

    port sniffing
    ftp directory harvest attacks
    smtp directory harvest attacks
    http/html DOS
    ping attacks
    etc...

    I'm looking for a single solution that will cover all sorts of these kinds
    of attacks.

    Thanks


    Chris Fortune Guest

  2. Similar Questions and Discussions

    1. repetitive pattern vector picture as background
      Hello all, I would like to use an Illistrator file as a repetitive pattern for the background of my flash web site. I couldn't find any pointer...
    2. Repetitive white spaces in string
      I want to prevent if visitor type more than 1 white space between two words. For example (I will use underscore "_" instead of white space " " here,...
    3. Spam Attacks
      I have received hundreds of emails from a single IP address with forged names since yesterday. The subject is usually something like "Re: Approved"...
    4. dogma ...without the personal attacks
      I'm going to say it again...there is a whole lot of dogma and mythology in this group. Leave out the personal attacks this time and try to have a...
    5. find physical blocks/disks, mapped from Oracle file# and block#, block corruption
      Hello "lopera" <prlopera@techie.com> schrieb im Newsbeitrag news:3E1C7C00.9090402@techie.com... I think that we need a bit more data here....
  3. #2

    Default Re: how to detect and block repetitive attacks

    Very funny. Do you know of a log audit program that detects these kinds of
    attacks, and then alters system-wide IP blocking rules, for example?




    <Michael Vilain <vilain@spamcop.net>> wrote in message
    news:vilain-BC3454.12283503082004@comcast.dca.giganews.com...
    > In article <tARPc.21241$T_6.5539@edtnps89>,
    > "Chris Fortune" <hey.spammer...just.get@job.org> wrote:
    >
    > > Hello,
    > >
    > > Is it possible to detect and block IP addresses that hit my server with
    > > repetitive (automated) attacks?
    > >
    > > port sniffing
    > > ftp directory harvest attacks
    > > smtp directory harvest attacks
    > > http/html DOS
    > > ping attacks
    > > etc...
    > >
    > > I'm looking for a single solution that will cover all sorts of these
    kinds
    > > of attacks.
    >
    > Hire a competent sysadmin with security experience.
    >
    > --
    > DeeDee, don't press that button! DeeDee! NO! Dee...
    >
    >
    >

    Chris Fortune Guest

  4. #3

    Default Re: how to detect and block repetitive attacks

    On Tue, 03 Aug 2004 19:34:04 GMT, Chris Fortune <> wrote:
    > Very funny.
    Please don't top-post, and I don't think he was joking.
    > Do you know of a log audit program that detects these kinds of
    > attacks, and then alters system-wide IP blocking rules, for example?
    Yes. Would you like to tell us anything at all about your environment
    so we can formulate relevant answers, or is this just a general question,
    or what's the situation? Have you googled? What did you find there
    that does or doesn't help?



    Dave Hinz Guest

  5. #4

    Default Re: how to detect and block repetitive attacks

    Thanks. Linux RH8, Apache, it's a web server dedicated to
    anti-spam/anti-virus pop-forward & filter services. It's getting attacked
    by the usual script kiddies, who occasionally bang it with thousands of
    login attempts per hour.

    I found Snort [url]http://www.snort.org/[/url], and have been struggling to write rules
    and control IP suppression automatically based on a behaviour of
    "repetition". Looking at the system logs, I see that only a handful of IP
    addresses need to access my server repetitively, and so I would like to
    allow them, but temporarily block any others after a certain number of
    repetitions. The algorithm that most appeals to me is "greylisting", where
    repetitive requests are fulfilled, but at a slower and slower bit transfer
    rate, so there is a dynamic "damping" effect, eventually blocking the IP
    totally after a certain threshold, but that's ideal, a simple blocking
    algorithm will suffice.

    I apologize for my newness to Unix security. It seems logical to me that
    there must be a well-known, open-source security tool that provides this
    sort of defence. If not, then I may be forced to take Michael's good
    advice.



    "Dave Hinz" <DaveHinz@spamcop.net> wrote in message
    news:2na8faFuias4U1@uni-berlin.de...
    > On Tue, 03 Aug 2004 19:34:04 GMT, Chris Fortune <> wrote:
    > > Very funny.
    >
    > Please don't top-post, and I don't think he was joking.
    >
    > > Do you know of a log audit program that detects these kinds of
    > > attacks, and then alters system-wide IP blocking rules, for example?
    >
    > Yes. Would you like to tell us anything at all about your environment
    > so we can formulate relevant answers, or is this just a general question,
    > or what's the situation? Have you googled? What did you find there
    > that does or doesn't help?
    >
    >
    >

    Chris Fortune Guest

  6. #5

    Default Re: how to detect and block repetitive attacks

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA1
    NotDashEscaped: You need GnuPG to verify this message

    In comp.unix.admin Chris Fortune <hey.spammer...just.get@job.org> suggested:

    ( Please stop top-posting as Dave already pointed out. )
    > Thanks. Linux RH8, Apache, it's a web server dedicated to
    > anti-spam/anti-virus pop-forward & filter services. It's getting attacked
    RH8 is already outdated and one shouldn't run it with ports
    opened to the internet, if at all. You need to plan on upgrading
    to a recent distro with patches available.
    > by the usual script kiddies, who occasionally bang it with thousands of
    > login attempts per hour.
    > I found Snort [url]http://www.snort.org/[/url], and have been struggling to write rules
    > and control IP suppression automatically based on a behaviour of
    > "repetition". Looking at the system logs, I see that only a handful of IP
    > addresses need to access my server repetitively, and so I would like to
    Why not simply allow this few IP, or the network, if those are
    dynamic and simply block anything else with iptables. Should be
    much easier then anything else that sounds as if it would
    require some experience.

    --
    Michael Heiming - RHCE (GPG-Key ID: 0xEDD27B94)
    mail: echo [email]zvpunry@urvzvat.qr[/email] | perl -pe 'y/a-z/n-za-m/'
    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.2.4 (GNU/Linux)

    iD8DBQFBD/WVAkPEju3Se5QRArajAJ9OJRDPkyKfUKmSmHUXKXsVMGScKACg whC/
    AGDOVcsUjQ+899YYDihqb/s=
    =ODr8
    -----END PGP SIGNATURE-----
    Michael Heiming Guest

  7. #6

    Default Re: how to detect and block repetitive attacks

    On Tue, 03 Aug 2004 20:10:41 GMT, Chris Fortune <> wrote:
    > Thanks. Linux RH8, Apache, it's a web server dedicated to
    FFS, DON'T FREAKING TOP-POST.

    Dave Hinz Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139