From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- srcs/phpmyadmin/url.php | 52 ------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 srcs/phpmyadmin/url.php (limited to 'srcs/phpmyadmin/url.php') diff --git a/srcs/phpmyadmin/url.php b/srcs/phpmyadmin/url.php deleted file mode 100644 index 4c9e0f0..0000000 --- a/srcs/phpmyadmin/url.php +++ /dev/null @@ -1,52 +0,0 @@ -set(DatabaseInterface::class, DatabaseInterface::load()); - -// Only output the http headers -$response = Response::getInstance(); -$response->getHeader()->sendHttpHeaders(); -$response->disable(); - -if (! Core::isValid($_GET['url']) - || ! preg_match('/^https:\/\/[^\n\r]*$/', $_GET['url']) - || ! Core::isAllowedDomain($_GET['url']) -) { - Core::sendHeaderLocation('./'); -} else { - // JavaScript redirection is necessary. Because if header() is used - // then web browser sometimes does not change the HTTP_REFERER - // field and so with old URL as Referer, token also goes to - // external site. - echo ""; - // Display redirecting msg on screen. - // Do not display the value of $_GET['url'] to avoid showing injected content - echo __('Taking you to the target site.'); -} -die(); -- cgit