Files
VulnRange/Ranges/Bash/shellshock/victim.cgi
wintrysec 173dbc4ab5 🎉VulnRange
2020-09-21 23:19:59 +08:00

15 lines
320 B
Bash

#!/usr/local/bash-4.3.0/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