Ajouter flag.php

This commit is contained in:
gitea-admin 2026-01-05 19:53:09 +00:00
parent a089e6c8a2
commit c648bea3de
1 changed files with 8 additions and 0 deletions

8
flag.php Normal file
View File

@ -0,0 +1,8 @@
<?php
session_start();
if (!isset($_SESSION['admin'])) {
http_response_code(403);
die("Access denied");
}
echo getenv('FLAG');