mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
11 lines
227 B
PHP
11 lines
227 B
PHP
|
|
<?php
|
||
|
|
// Command injection — unsupported fixture.
|
||
|
|
// Entry is a class method; test sets confidence = Low.
|
||
|
|
// Expected verdict: Unsupported
|
||
|
|
|
||
|
|
class Runner {
|
||
|
|
public function execute($cmd) {
|
||
|
|
shell_exec($cmd);
|
||
|
|
}
|
||
|
|
}
|