For those using perl 5.x, you can use sysopen() instead of the "magic"
perl open() to fix this.
- todd
--- resend Thu Aug 19 10:12:03 1999
+++ resend+ Tue Dec 28 23:55:39 1999
@@ -58,7 +58,7 @@
if ($ARGV[0] =~ /^\@/) {
$fn = shift(@ARGV);
$fn =~ s/^@//;
- open(AV, $fn) || die("open(AV, \"$fn\"): $!\nStopped");
+ sysopen(AV, $fn, O_RDONLY) || die("sysopen(AV, \"$fn\", O_RDONLY): $!\nStopped");
undef($/); # set input field separator
$av = <AV>; # read whole file into string
close(AV);
- majordomo local exploit Brock Tellier
- Re: majordomo local exploit Todd C. Miller
- Re: majordomo local exploit Taneli Huuskonen
- Re: majordomo local exploit Henrik Edlund
- Re: majordomo local exploit Henrik Nordstrom
- Re: majordomo local exploit Andrew Brown
- Re: majordomo local exploit Olaf Kirch
- Re: majordomo local exploit Coolio
- Re: majordomo local exploit Brock Sides
- Re: majordomo local exploit Christopher Schulte
- Re: majordomo local exploit Christopher X. Candreva
- Re: majordomo local exploit Spidey
