Testing All PHP Command Execution Functions


1. exec()

Return Code: 0
Output:
Array
(
    [0] => gameto5
)

2. system()

gameto5

Return Code: 0

3. shell_exec()

gameto5
Return Code: 0 (no direct code)

4. passthru()

gameto5

Return Code: 0

5. popen()

gameto5

Return Code: Unknown (popen doesn't return exit code directly)

6. proc_open()

STDOUT:
gameto5

STDERR:

Exit Code: -1

Disabled Functions

None

✅ Test Complete