Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SecurityInfo/PhpSecInfo/Test/Suhosin/patch.php')
-rw-r--r--plugins/SecurityInfo/PhpSecInfo/Test/Suhosin/patch.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/plugins/SecurityInfo/PhpSecInfo/Test/Suhosin/patch.php b/plugins/SecurityInfo/PhpSecInfo/Test/Suhosin/patch.php
deleted file mode 100644
index bd8bf5f827..0000000000
--- a/plugins/SecurityInfo/PhpSecInfo/Test/Suhosin/patch.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-/**
- * Test class for Suhosin patch
- *
- * @package PhpSecInfo
- * @author Piwik
- */
-
-/**
- * require the PhpSecInfo_Test_Suhosin class
- */
-require_once(PHPSECINFO_BASE_DIR.'/Test/Test_Suhosin.php');
-
-/**
- * Test class for Suhosin
- *
- * Checks for Suhosin patch which implements low-level protections against bufferoverflows or format string vulnerabilities
- *
- * @package PhpSecInfo
- * @author Piwik
- */
-class PhpSecInfo_Test_Suhosin_Patch extends PhpSecInfo_Test_Suhosin
-{
- var $test_name = "Suhosin patch";
-
- var $recommended_value = true;
-
- function _retrieveCurrentValue() {
- if (preg_match('/Suhosin/', $_SERVER['SERVER_SOFTWARE'])) {
- $this->current_value = true;
- } else {
- $this->current_value = false;
-
- $constants = get_defined_constants(false);
- if(isset($constants['SUHOSIN_PATCH']) && $constants['SUHOSIN_PATCH'] == 1) {
- $this->current_value = true;
- }
- }
- }
-
- function _execTest() {
- if ( $this->current_value === true ) {
- return PHPSECINFO_TEST_RESULT_OK;
- } else {
- return PHPSECINFO_TEST_RESULT_NOTICE;
- }
- }
-
- function _setMessages() {
- parent::_setMessages();
-
- $this->setMessageForResult(PHPSECINFO_TEST_RESULT_OK, 'en', "You are running PHP with the Suhosin patch applied against the PHP core. This patch implements various low-level protections against (for example) buffer overflows and format string vulnerabilities.");
- $this->setMessageForResult(PHPSECINFO_TEST_RESULT_NOTICE, 'en', "You are not running PHP with the Suhosin patch applied. We recommend both the patch and extension for low- and high-level protections against (for example) buffer overflows and format string vulnerabilities.");
- }
-}