BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 260B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. $p = $_GET['p'];
  4. switch ($p) {
  5. case 'privacy':
  6. require_once 'privacy.php';
  7. break;
  8. case 'dmca':
  9. require_once 'dmca.php';
  10. break;
  11. default:
  12. error(404);
  13. break;
  14. }