Slashdot Mirror


Fix For Apache DoS Bug In the Pipes

Trailrunner7 writes with the report that "The Apache Software Foundation plans to have a fix available in the next day or so [Note: that means today, now. --Ed.] for the denial-of-service problem in Apache that was publicized late last week. The bug, which in some forms has been under discussion for more than four years, involves the way that the Web server handles certain overlapping range headers. The vulnerability is a denial-of-service bug, but it is considered serious because a remote attacker can essentially take a targeted server offline with little effort and resources. The Apache Software Foundation, which maintains the popular open-source Web server, updated its advisory on the vulnerability, saying that it expects to have a full fix available for the vulnerability within the next 24 hours."

49 comments

  1. Apache has an excellent security record. by Anonymous Coward · · Score: 4, Interesting

    The one thing that I've found really astounding about this whole ordeal is how despicably some members of the open source community have acted towards Apache and its developers. The pure hatred they have spewed is absurd. For such a large and widely-used piece of software, Apache has a superb record of being secure and reliable. The ridicule it has received lately, especially from the open source community, is disheartening.

    Somewhat surprisingly, this criticism has been coming from PHP, Ruby and JavaScript programmers. Many of these people likely don't even know C. Yet they still feel it necessary to belittle the Apache developers for making what is actually a very obscure mistake many years back. Of course, these people delivering the criticism won't admit that their own software is far buggier and insecure than Apache. The developers of PHP would never break a critical security-related function like crypt(), right?

    1. Re:Apache has an excellent security record. by Anonymous Coward · · Score: 0

      This problem has existed since 2007, the apache devs pooh-poohed it. Now they have egg on their face. So what? Move on, it hasn't affected anyone other than a tiny number of developers and their credibility.

      Go and read the original bug notice, and the shitty developer attitude for a more rounded picture. They were told about it, they were shown how to replicate it, but they chose to belittle the report.

    2. Re:Apache has an excellent security record. by ToasterMonkey · · Score: 1

      Somewhat surprisingly, this criticism has been coming from PHP, Ruby and JavaScript programmers. Many of these people likely don't even know C. Yet they still feel it necessary to belittle the Apache developers for making what is actually a very obscure mistake many years back

      Let me ask, is mixing free and non-free software acceptable to you? The FLOSS community promotes using open source above all else, for the sake of more people using open source. If "shut up if you can't program" was their motto, its user base should be a tiny fraction of what it is. Unless you think people like being told to "shut up and use it anyway."

      You wouldn't DARE tell me, not-a-programmer, use open source "just because", and do not complain about it, in anything short of suicidal fantasies. UNIX system admins are the reason you exist, so suck my ass.

      I stopped recommending open source - just because it was open source - a long time ago, because the reality is, it's run by a whole lot of people with attitudes like this.

      Grow up folks, buy software when it works.

    3. Re:Apache has an excellent security record. by Anonymous Coward · · Score: 0

      What the hell are you going on about?

      The GP is talking about the users and advocates of some of the most flawed software ever written (PHP and RoR) insulting the developers of some of the best, most widely-used software ever (Apache) over what's a very minor bug that's easily remedied.

      That's completely orthogonal to whatever the fuck you're strung up on.

    4. Re:Apache has an excellent security record. by bgat · · Score: 1

      Grow up folks, buy software when it works.

      You let me know how that works out for you.

      In particular, I'd love to know what browser you are using to produce your rant, cause I'm not aware of any browser implementation available today that "works" in the manner you suggest they should.

      In the meantime, I'll stick with what "reasonably works, and coincidentally works better than the commercial alternatives". You know, like, Apache.

      --
      b.g.
    5. Re:Apache has an excellent security record. by Anonymous Coward · · Score: 0

      While I agree that the hatred is based on their stupidity and ignorance (the PHP ones doubly so), this is not what I want to comment about. I want to comment or your view of C as if it was something to aspire to.
      You talk as if writing a serious application in C (or C++ for that matter) would be a good thing.

      C has its purposes. Like writing the lower layers of a kernel, drivers, etc.
      But for applications, it's deeply wrong. As wrong as writing them in any of the mentioned scripting languages. (Which are the other extreme.)

      A application should not have to implement all the low-level meddling like memory management, thread management, etc. That is a (configurable) feature of the OS and build system. If you want to improve that, improve in in there. If you want to adapt it to your needs, configure it that way.
      It is implemented once, and done properly. To then be used by the applications.

      I, for example, deliberately worked right around C and C++. I started out with Pascal and assembler (after playing with GWBasic as a child), then Java (and a couple of scripting languages for the glue), and then I started to learn C and C++. After a short time (easy to learn for someone having done all the stupid memory juggling in Pascal, and knowing the syntax from Java) I realizeds that it was such a primitive (for C) and poorly designed (for C++) mess, that I couldn't bear looking at that FAIL anymore. So I designed my own language. (With hookers. And black jack! ;) Only to find out that somebody had already done that, and done it better, by designing Haskell. So I switched right over to Haskell for everything (except mobile phones that I can't get GHC to compile for yet).
      Now although there are also other good alternatives, of course it doesn't even have to be a functional language. But it should still be high-level and clean. The right tool for the job. Not that outdated mess that C is. (Which, by the way, is a simplistic joke compared to Haskell... just in case you thought it would be a "advanced" or "professional" language. To me, C now feels like a simple scripting language for noobs, but with lots of useless repetitive pains inside it.)

    6. Re:Apache has an excellent security record. by bonch · · Score: 1

      Your entire post is basically that you don't like seeing Apache criticized on message boards. So what? You even end with a pointless remark about programmers you assume don't know C, as if that has anything to do with anything. Apache brought criticism onto themselves. The bug is more than four-and-a-half years old.

    7. Re:Apache has an excellent security record. by Onymous+Coward · · Score: 1

      Apache brought criticism onto themselves. The bug is more than four-and-a-half years old.

      This memory allocation bug is distinct from Zalewski's bandwidth multiplying bug.

      Indeed, both stem from "silly" Range handling, but they are still different bugs. I.e., the bug is not 4+ years old.

  2. Not just an Apache bug by Kickasso · · Score: 5, Insightful

    It's a protocol bug. Any server that implements the protocol to the letter is vulnerable. And it's not just about overlapping ranges. If the server can send a ten megabyte file, an attacker can ask it for ten million of one-byte ranges. The processing overhead will bring most servers to their knees. If the server can compress the output, an attacker can ask for ten million of compressed one-byte ranges. An attempt to execute such a request will kill just about anything. The protocol should have limited the number of ranges per request to, say, 10.

    1. Re:Not just an Apache bug by Jamu · · Score: 1

      Obviously Apache isn't doing so at the moment, but is there any reason it couldn't just take a long time to fulfil the request?

      --
      Who ordered that?
    2. Re:Not just an Apache bug by raynet · · Score: 2

      It all depends how you implement it but yes, it would have been wiser to let the server discard some of the ranges if needed and ask the client to do another request later.

      --
      - Raynet --> .
    3. Re:Not just an Apache bug by amorsen · · Score: 2

      The protocol does not require the server to answer at all. The server can just send an error response if it gets too many ranges in a request. The protocol designers cannot know how many resources a given server has available. The most they could do was add a specific error response for "too many ranges, resubmit as individual requests".

      --
      Finally! A year of moderation! Ready for 2019?
    4. Re:Not just an Apache bug by perlchild · · Score: 2

      If Apache doesn't return an error code it will have to keep the connection open, and you're back at the "consuming so many resources it's denying legitimate traffic" part of the denial of service.

    5. Re:Not just an Apache bug by tepples · · Score: 1

      If Apache doesn't return an error code it will have to keep the connection open

      What part of the HTTP spec bans issuing a 400 Bad Request when something looks like a DoS? And is there a reason why Apache can't hand off thousands of connections to a separate, lightweight "penalty box" server process?

    6. Re:Not just an Apache bug by jevan · · Score: 2

      Apache's implementation problems go beyond the protocol specs. The sample attack codes includes invalid ranges in the request (E.g start at 5, end at 0). So the protocol specs aren't the only thing to blame. Also, the fact that apache is the only server to be crippled by this issue is a strong data point against putting all blame on the protocol.

    7. Re:Not just an Apache bug by Anonymous Coward · · Score: 0

      nginx? Seriously? It can't even run CGI scripts. That's the most basic dynamic web technology around. If it can't run CGI scripts, then it's useless for many people.

    8. Re:Not just an Apache bug by aztracker1 · · Score: 1

      65535 connections for TCP (minus a few) per server... as long as each connection stays open, poof, no more room at the inn.

      --
      Michael J. Ryan - tracker1.info
    9. Re:Not just an Apache bug by ivoras · · Score: 2

      65535 connections for TCP (minus a few) per server...

      To be pedantic, that's 65535 per (client_ip,port) pair...

      --
      -- Sig down
    10. Re:Not just an Apache bug by Anonymous Coward · · Score: 0

      It can run FastCGI scripts, which is what anyone with half a brain should be using.

    11. Re:Not just an Apache bug by Kickasso · · Score: 1

      Apache has its share of its own unique bugs, that's true.

    12. Re:Not just an Apache bug by Kickasso · · Score: 2

      How did you test? nginx does honor Range requests. The Apache killer will report that nginx not vulnerable, so what, it misreports PHP-based Apache installations too. However, this attack can be performed in more than one way. Maybe you should know that nginx maintainers have released a patch today. I wonder why.

      I have read that IIS is vulnerable to this too, not sure if this is true, I have no IIS installations that I can check.

      I'm not sure what Cherokee does so I can't comment here.

    13. Re:Not just an Apache bug by Anonymous Coward · · Score: 0

      FastCGI is not the solution. The solution is for nginx to man up and support CGI scripts like every decent web server out there.

    14. Re:Not just an Apache bug by Anonymous Coward · · Score: 0

      nginx is made for caching, load balancing, and static files.
      Go jump on the node.js boat if you insist on using the wrong tool for the job...

  3. I hear... by eexaa · · Score: 0

    the sound of millions lazy sysadmins compaining!

    1. Re:I hear... by Anonymous Coward · · Score: 0

      More like the sound of millions of UNDERSTAFFED sysadmins complaining. How many hundreds of production servers are *YOU* responsible for?

    2. Re:I hear... by digitalchinky · · Score: 5, Informative

      I am utterly lazy, but a few moments in google and I added the following to my domains:

      RewriteEngine On
      RewriteCond %{REQUEST_METHOD} ^(HEAD|GET) [NC]
      RewriteCond %{HTTP:Range} ([0-9]*-[0-9]*)(\s*,\s*[0-9]*-[0-9]*)+
      RewriteRule .* - [F]

      It certainly makes the exploit fail which is good enough for me until Apache gets a fix going.

    3. Re:I hear... by thebjorn · · Score: 2

      Request-Range is also affected, better turn it off: RequestHeader unset Request-Range

    4. Re:I hear... by Onymous+Coward · · Score: 1

      Request-Range? I'm not familiar with that request-header field. Searching now, I can't find it in RFC 2616 either. Could you point to where you heard about it?

    5. Re:I hear... by alba7 · · Score: 1

      According to http://marc.info/?l=apache-httpd-dev&m=131418828705324&w=2 the correct syntax is:
      RequestHeader unset Range

      --
      Post tenebras lux. Post fenestras tux.
  4. I wonder if... by ryanmcdonough · · Score: 1

    This is the main exploit used by the Jester for attacks on Apache servers?

  5. Offensive by Anonymous Coward · · Score: 2, Interesting

    From the article:

    "This problem is so obvious, my grandmother could identify it."

    As a 49 yo grandmother, C programmer of 20+ years, and a feminist this offends me. They wouldn't have said grandfather.

    1. Re:Offensive by Anonymous Coward · · Score: 1

      Calm down dear. They were simply taking an example of someone who isn't good with computers, which in most people's cases could equally be the grandfather.

  6. Pipes? by Anonymous Coward · · Score: 0

    I thought we were calling them tubes.

    1. Re:Pipes? by KingMotley · · Score: 1

      Pipes are 1/8 of a tube.

  7. That's not even in the article. by Anonymous Coward · · Score: 0

    Nice try. That quotation isn't even in the article.

    It's clearly not an obvious flaw, either. That's why Apache 1.3, 2.0, and 2.2 were affected. It went years without being detected, and Apache has had many thousands of eyes look upon its code.

  8. How many SysAdmins will be logged in on Sunday? by adosch · · Score: 1

    Next 24 hours puts this fix release on Sunday. I, myself, can't wait to let my Apache source compiles rip upon release.

    All jokes aside, what baffles me is even if you're clueless when it comes to Apache webserver security, there's plenty of best practices out there, especially using mod_security with some tuned SecRule's. The mitigation steps Apache provided (using mod_rewrite) almost identically mirror the out-of-the-box SecRule's provided at gotroot.com. This isn't a soapbox plug, I just think that this attack really isn't "new" as I've compensated for it for years on any Apache webserver setup, public or private facing. Might be a good idea for 'whomever' is supporting Apache to spend some time securing it so you don't waste your Sunday evenings.

    1. Re:How many SysAdmins will be logged in on Sunday? by Anonymous Coward · · Score: 1

      Yeah, once this hits our change control procedures - gets through an internal review or three, jumps through our unreliable release process (after getting munged by several git merge conflicts) it'll fly right on out to our 2k machines RSN. Oh yeah, did I mention how we wouldn't be bothering to test to make sure it doesn't cause any problems in QA?

  9. Hundreds? by Anonymous Coward · · Score: 0

    More like a dozen.

    I do pity you public-school-teacher equivalent sysadmins though, I guess.

  10. How about ten thousand by tepples · · Score: 1

    I was thinking on the order of 10,000 connections handled by the penalty box. A server under attack might randomly choose to use 400 Bad Request, use 503 Service Unavailable, or handle the connection slowly, with the frequency of error-code responses increasing as the penalty box fills up.

  11. bugs and beetles by FalseModesty · · Score: 0

    Slashdot's icon for a bug is a picture of a beetle? I thought this was news for NERDS.

    http://en.wikipedia.org/wiki/Hemiptera

  12. What's today? by Anonymous Coward · · Score: 0

    The Apache Software Foundation plans to have a fix available in the next day or so [Note: that means today, now. --Ed.

    It doesn't take a genius to see that this gets stale in a couple of hours. What is today? Now? You might like when it was submitted to slashdot? Put a numeric date in your posts!

  13. nginx patch here by Anonymous Coward · · Score: 0

    patch for nginx

    http://mailman.nginx.org/pipermail/nginx/2011-August/028779.html

  14. Unit tests by Anonymous Coward · · Score: 0

    Good unit tests would have caught this problem.

  15. LAMP = MOST ATTACKED by by Anonymous Coward · · Score: 0

    Spammers & Phishers - To wit:

    LAMP is the favored attack for phishers & spammers:

    http://www.theregister.co.uk/2011/06/10/domains_lamped/

    ---

    PERTINENT QUOTE:

    "Phishers compromise LAMP-based websites for days at a time and hit the same victims over and over again, according to an Anti-Phishing Working Group survey.

    Sites built on Linux, Apache, MySQL and PHP are the favoured targets of phishing attackers,"

    ---

    * "Read 'em, & WEEP", Open SORES people...

    APK

    1. Re:LAMP = MOST ATTACKED by by Anonymous Coward · · Score: 1

      Apache is the #1 server on the Internet. Of course it's the #1 attacked too. Duh! Go back under your bridge, troll.

  16. Calling truth's trolling doesn't make it trolling by Anonymous Coward · · Score: 0

    See subject-line above, & it's obvious YOU can't handle the truth!

    APK

    P.S.=> The ONLY reason Apache is the most used webserver IS ZERO CO$T OF PURCHASE, period (yet another truth), NOT THAT IT IS A SUPERIOR PRODUCT vs. say, IIS7!

    ... apk