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

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2019-09-21 17:31:06 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-09-21 17:31:06 +0300
commita1b6d463b2f3ff5f9cdd2383bc3ee031f38bb4e5 (patch)
treebd151fa6c6aac9b0e76ce87381c988ecf9dc693c /include/tests_php
parent2c32e8e04df851fbea035a75b29d73558562e901 (diff)
Fixed a typo
Diffstat (limited to 'include/tests_php')
-rw-r--r--include/tests_php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tests_php b/include/tests_php
index 23ece909..d2303c2c 100644
--- a/include/tests_php
+++ b/include/tests_php
@@ -295,7 +295,7 @@
FIND=$(${EGREPBINARY} -i 'allow_url_fopen.*(off|no|0)' ${PHPINIFILE} | ${GREPBINARY} -v '^;')
if [ -z "${FIND}" ]; then
Display --indent 4 --text "- Checking allow_url_fopen option" --result "${STATUS_ON}" --color YELLOW
- LogText "Result: allow_url_fopen option is turned on, which can be used for riskful downloads via PHP"
+ LogText "Result: allow_url_fopen option is turned on, which can be used for downloads via PHP and is a security risk"
ReportSuggestion ${TEST_NO} "Change the allow_url_fopen line to: allow_url_fopen = Off, to disable downloads via PHP"
AddHP 0 1
else
@@ -318,7 +318,7 @@
FIND=$(${EGREPBINARY} -i 'allow_url_include.*(off|no|0)' ${PHPINIFILE} | ${GREPBINARY} -v '^;')
if [ -z "${FIND}" ]; then
Display --indent 4 --text "- Checking allow_url_include option" --result "${STATUS_ON}" --color YELLOW
- Report "Result: allow_url_include option is turned on, which can be used for riskful downloads via PHP"
+ Report "Result: allow_url_include option is turned on, which can be used for downloads via PHP and is a risk"
ReportSuggestion ${TEST_NO} "Change the allow_url_include line to: allow_url_include = Off, to disable downloads via PHP"
AddHP 0 1
else