This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Perl"

From OWASP
Jump to: navigation, search
Line 1: Line 1:
Under construction
+
This page should collect together any resources relating to Perl and OWASP or security in general.
  
[[Category:OWASP Project]]
+
It is perhaps odd that this page is so new:
 +
<ol>
 +
<li>Perl has long been an open language and often associated with the internet.</li>
 +
<li>It offers what seems to be a much under-used method of combating many sorts of exploit namely "taint" mode. This forces every "input" to the program to be checked for malign influences before it is allowed to effect the "outside" of the program.</li>
 +
</ol>
 +
 
 +
Possible perl OWASP projects might include:
 +
<ol>
 +
<li>Perl ports of multi-language OWASP projects, for example AntiSamy.</li>
 +
<li>Review of CPAN modules according to OWASP standards, for example CGI::Application::Plugin::Authentication.</li>
 +
<li>A perl module to measure the strength of passwords.</li>
 +
</ol>

Revision as of 00:14, 26 March 2010

This page should collect together any resources relating to Perl and OWASP or security in general.

It is perhaps odd that this page is so new:

  1. Perl has long been an open language and often associated with the internet.
  2. It offers what seems to be a much under-used method of combating many sorts of exploit namely "taint" mode. This forces every "input" to the program to be checked for malign influences before it is allowed to effect the "outside" of the program.

Possible perl OWASP projects might include:

  1. Perl ports of multi-language OWASP projects, for example AntiSamy.
  2. Review of CPAN modules according to OWASP standards, for example CGI::Application::Plugin::Authentication.
  3. A perl module to measure the strength of passwords.