From 65f977918f0b764c8e73d54514816cee378c59a3 Mon Sep 17 00:00:00 2001 From: cedric Date: Thu, 11 Dec 2025 11:50:28 +0000 Subject: [PATCH] Actualiser index.php Disallow POST due to 429 --- index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index ee293ff..fe3c6d9 100644 --- a/index.php +++ b/index.php @@ -123,7 +123,8 @@ class RequestHandler if ($method === 'GET') { $this->redirectGet($instance, $query); } elseif ($method === 'POST') { - $this->proxyPost($instance, $_POST); + $this->redirectGet($instance, $query); + // $this->proxyPost($instance, $_POST); } else { http_response_code(405); exit('Méthode non autorisée');