Files
VulnRange/Ranges/Bash/shellshock/safe.cgi

15 lines
299 B
Plaintext
Raw Normal View History

2020-09-21 23:19:59 +08:00
#!/bin/bash
echo "Content-type: text/html"
echo ""
echo '<html>'
echo '<head>'
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'
echo '<title>Bash ShellShock</title>'
echo '</head>'
echo '<body>'
echo '<p>'
echo 'Hello world'
echo '</p>'
echo '</body>'
echo '</html>'
exit 0