I want to say something about the security issue because Java supporters seem to bring it up a lot. Neither Java nor Perl programs have buffer overflow vulnerabilities, except when the main interpreter or a used library has one. The kind of security problems that show up are mistakes like not properly checking input that is used as part of a file name or using session IDs that can be guessed. These are problems with trusting client input too much, and both languages are equally vulnerable to them.

If a method needs to write to a file, you can't use Java's security model to prevent filesystem access. The security model that Java offers is mostly about sandboxing and running untrusted code, which has nothing to do with real server-side website exploits.


In reply to Re: Re: Perl falls victim to shifting trends(Opinions/Comments From The Other Side) by perrin
in thread Perl falls victim to shifting trends by vladb

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.