summaryrefslogtreecommitdiff
path: root/pod/perlsec.pod
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2012-01-31 23:41:16 -0300
committerFather Chrysostomos <sprout@cpan.org>2012-06-27 08:47:09 -0700
commitdde0c55834d928a105603c1c12834b19edb60ed7 (patch)
tree4ab97b4ccf333358b1bbfeea138f7294ae781826 /pod/perlsec.pod
parent6898e867247a1170dd5174586025e87d5027526e (diff)
downloadperl-dde0c55834d928a105603c1c12834b19edb60ed7.tar.gz
perlsec: #109408
Diffstat (limited to 'pod/perlsec.pod')
-rw-r--r--pod/perlsec.pod6
1 files changed, 2 insertions, 4 deletions
diff --git a/pod/perlsec.pod b/pod/perlsec.pod
index d8470ecccc..634024d92f 100644
--- a/pod/perlsec.pod
+++ b/pod/perlsec.pod
@@ -134,10 +134,8 @@ For example:
@files = <*.c>; # insecure (uses readdir() or similar)
@files = glob('*.c'); # insecure (uses readdir() or similar)
- # In Perl releases older than 5.6.0 the <*.c> and glob('*.c') would
- # have used an external program to do the filename expansion; but in
- # either case the result is tainted since the list of filenames comes
- # from outside of the program.
+ # In either case, the results of glob are tainted, since the list of
+ # filenames comes from outside of the program.
$bad = ($arg, 23); # $bad will be tainted
$arg, `true`; # Insecure (although it isn't really)