[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] MAJOR BUG, Browse any directory view any file



#!/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