[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Mongrel Web Server 0.3.12.1 -- Iron Mongrel

Zed A. Shaw

4/4/2006 6:13:00 AM

Hello All Mongrel Users,

For the unintiated, Mongrel is a web server that runs Ruby web applications
really fast. Read http://mongrel.ruby... to get find out more about
it.

This is the Iron Mongrel release. It is the result of trying to trash
Mongrel until it can't move and then fixing anything that comes up. The
work was done on EastMedia's and VeriSign's upcoming project in order to
make sure it can handle heavy loads and potentially malformed requests. The
project is a security and identity project so having a web server that is
able to block bad requests is very important.

The testing methods used were (are):

1. Unit testing what I can. Mongrel is a server so many tests have to be
done "live".
2. Thrashing Mongrel's HTTP parser internally with random or near-random
data (called fuzzing).
3. Using "Peach Fuzz":http://peachfuzz.source... to thrash several
live apps with randomness.
4. Running several extensive little scripts to explore the edges of death
for Mongrel.
5. Heavy code audits covering as much code as possible to find any possible
loose ends.

The end result is a lot of little fixes which make Mongrel more robust
against badly behaving clients and possibly against many potential security
risks in the future. In general Mongrel 0.3.12.1 behaves more consistently
compared to past releases when given random data or maliciously formatted
data.

The main changes are related to how IO is processed and how the HTTP parser
rejects "bad" input. What the parser now blocks is:

* Any header over 112k.
* Any query string over 10k.
* Any header field value over 80k.
* Any header field name over 256 bytes.
* Any request URI (the file part, not the whole thing) greater than 512
bytes.

As soon as these conditions are detected the client is disconnected
immediately and a log message is printed out listing the IP address, the
exact cause, and the data that caused it. I'll remove the data dump later,
but I want people to shoot me valid requests that cause parser errors.

That's not all though. I've started a "security":security.html page where
I'll publish the results of security threats, tests, and improvements as
well as any advice for folks.

This release also features a few little features here and there:

* Initial support for a "config script". I'll be documenting this more, but
it basically lets you use the Mongrel::RailsConfigurator to augment your
application's config via a small script. Just pass "-S config/mongrel.rb"
and put any Mongrel::RailsConfigurator statements that are reasonable.
* Mongrel will report the correct REMOTE_ADDR variable, but it does a little
trick where if there is an X-FORWARDED-FOR header then it sets REMOTE_ADDR
to that.
* Fixes for little bugs like double log messages, but not a lot of changes
to the overall core.

Go ahead and install the usual way: gem install mongrel *or* gem upgrade


Zed A. Shaw
http://www.ze...
http://mongrel.ruby...

P.S. The snazzy Iron Mongrel logo is courtesy court3nay from
http:/...



3 Answers

Toby DiPasquale

4/4/2006 12:12:00 PM

0

Zed Shaw wrote:
> This is the Iron Mongrel release. It is the result of trying to trash
> Mongrel until it can't move and then fixing anything that comes up. The
> work was done on EastMedia's and VeriSign's upcoming project in order to
> make sure it can handle heavy loads and potentially malformed requests.
> The
> project is a security and identity project so having a web server that
> is
> able to block bad requests is very important.

Any plans for an Mongrel XML-RPC hook, a la XMLRPC::WEBrickServlet? I
didn't see any other than what comes with ActionWebService. I am using
XML-RPC with WEBrick now and I'd love to move off of it and onto
Mongrel. Would you accept a patch if submitted?

--
Toby DiPasquale

--
Posted via http://www.ruby-....


pat eyler

4/4/2006 3:23:00 PM

0

Heh, a new version on the day my mini writeup of 0.3.12 went live. Isn't
that the way things always go? ;^)

On 4/4/06, Zed Shaw <zedshaw@zedshaw.com> wrote:
> Hello All Mongrel Users,
>
> For the unintiated, Mongrel is a web server that runs Ruby web applications
> really fast. Read http://mongrel.ruby... to get find out more about
> it.
>
> This is the Iron Mongrel release. It is the result of trying to trash
> Mongrel until it can't move and then fixing anything that comes up. The
> work was done on EastMedia's and VeriSign's upcoming project in order to
> make sure it can handle heavy loads and potentially malformed requests. The
> project is a security and identity project so having a web server that is
> able to block bad requests is very important.
>
> The testing methods used were (are):
>
> 1. Unit testing what I can. Mongrel is a server so many tests have to be
> done "live".
> 2. Thrashing Mongrel's HTTP parser internally with random or near-random
> data (called fuzzing).
> 3. Using "Peach Fuzz":http://peachfuzz.source... to thrash several
> live apps with randomness.
> 4. Running several extensive little scripts to explore the edges of death
> for Mongrel.
> 5. Heavy code audits covering as much code as possible to find any possible
> loose ends.

This sounds very cool. any chance you could write up some of your testing
activity in more detail? I think this would be a great way to learn more about
testing beyond unit testing.

>
> The end result is a lot of little fixes which make Mongrel more robust
> against badly behaving clients and possibly against many potential security
> risks in the future. In general Mongrel 0.3.12.1 behaves more consistently
> compared to past releases when given random data or maliciously formatted
> data.

Again, seeing more specific examples (show us the code man!) would be
awesome.

>
[deleted]
> Zed A. Shaw
> http://www.ze...
> http://mongrel.ruby...
>
> P.S. The snazzy Iron Mongrel logo is courtesy court3nay from
> http:/...
>
>
>


--
thanks,
-pate
-------------------------


Zed A. Shaw

4/5/2006 6:32:00 AM

0




On 4/4/06 11:23 AM, "pat eyler" <pat.eyler@gmail.com> wrote:

> Heh, a new version on the day my mini writeup of 0.3.12 went live. Isn't
> that the way things always go? ;^)
>
Where's your write-up? Yeah, I'm pushing hard to 0.3.13 (and then 0.4
hopefully before or on Canada on Rails). The core functionality won't
change, just stability and mostly debugging enhancements.

> This sounds very cool. any chance you could write up some of your testing
> activity in more detail? I think this would be a great way to learn more
> about testing beyond unit testing.
>

I'll see if I can write it up.

>>
>> The end result is a lot of little fixes which make Mongrel more robust
>> against badly behaving clients and possibly against many potential security
>> risks in the future. In general Mongrel 0.3.12.1 behaves more consistently
>> compared to past releases when given random data or maliciously formatted
>> data.
>
> Again, seeing more specific examples (show us the code man!) would be
> awesome.
>

The majority of the changes were to simply stop accepting elements that were
above certain fixed lengths and to read smaller chunks of IO so that errors
are detected earlier. I'll do a more complete write-up later when I can
breath. Or maybe a BOF at CoR?

Zed A. Shaw
http://www.ze...
http://mongrel.ruby...