mirror of
https://github.com/Medicean/VulApps.git
synced 2025-06-22 02:40:08 +00:00
15 lines
297 B
Bash
15 lines
297 B
Bash
#!/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 '<pre>'
|
|
/usr/bin/env
|
|
echo '</pre>'
|
|
echo '</body>'
|
|
echo '</html>'
|
|
exit 0 |