First page Back Continue Last page Summary Graphics
Security aware programming(1)
What does Perl to 'prevent' security problems?
- quite a lot...
- but not always by default when it should
How Perl can help:
#!/usr/bin/perl -T
use warnings FATAL => "all";
use strict;
How you can help:
- be a bit paranoid at the right moments