Wed Apr 16 17:53:22 CEST 2025
System Output: Wed Apr 16 17:53:22 CEST 2025
Exec Output: Wed Apr 16 17:53:22 CEST 2025
show code
<div style="background:#000;color:#fff">
<?php
$cmd = "/bin/date";
$output = system($cmd);
printf("System Output: $output\n");
exec($cmd, $results);
printf("Exec Output: {$results[0]}\n");
?>
</div>