"Verb": "New",
06 "Noun": "Command1",
07 "OriginalName": "
"
08 },
09 {
10 "Verb": "New",
11 "Noun": "Command2",
12 "OriginalName": "
14%
16.10.2012
($ssh, '/sbin/ifconfig');
07 stream_set_blocking($stream, true);
08
09 $response = '';
10 while($buffer = fread($stream, 4096)) {
11 $response .= $buffer;
12 }
13
14 fclose($stream);
15 echo $response;
16
17