Reading security bulletens, I'm amazed at how many bugs and holes are in software.

The major web servers are stressing performance. Use OS tricks and dirty code, just to push bytes faster!

But, a personal desktop box doesn't need that kind of speed. We get a few hundred hits a day, tops. Instead, we need robustness.

So, how about a simple web server written in Perl? No buffer overflow bugs, because it's all in a high-level language. With existing libraries, a simple server that maps a URL to a local directory tree and serves up static web pages is maybe 20 lines, and may even be an example somewhere.

"Public" servers that don't have security issues because they don't have any dynamic behavior and don't differentiate between allowed and disallowed users already exist. But the next step up would be to have dynamic behavior. A server written in Perl would very easily accomidate dynamic URL content in Perl, I would think. All taint-checked from top to bottom, and not overrun with excess features.

Does something like this already exist? If not, any other comments or ideas on the matter?

—John


In reply to HTTP Server, anyone? by John M. Dlugosz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.