git-update.php 147 B

1234567891011
  1. <?php
  2. if($_SERVER['REQUEST_METHOD'] != 'POST') {
  3. include error(403);
  4. die;
  5. }
  6. if(array_key_exists('secret', $_POST)) {
  7. echo $_POST['secret'];
  8. }