logo

scripts

A bunch of scripts, some to be moved to their own repository git clone https://hacktivis.me/git/scripts.git

418.php (324B)


  1. <?php
  2. header("HTTP/1.0 418 I'm a teapot");
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta charset="utf-8"/>
  8. <title>418 I'm a teapot</title>
  9. </head>
  10. <body>
  11. <h1>I'm a teapot</h1>
  12. <p>The teapot failed to get you some coffee.</p>
  13. <hr>
  14. <address><?=$_SERVER["SERVER_SIGNATURE"]?></address>
  15. </body>
  16. </html>