fix: harden WordPress against WPScan findings

This commit is contained in:
bisco
2026-07-23 19:10:11 +02:00
parent 0762b98fc6
commit 472b8616b4
10 changed files with 74 additions and 6 deletions
+25
View File
@@ -22,12 +22,37 @@ grep -q 'azionelab-apache-hardening.conf' /workspace/wordpress/Dockerfile || {
exit 1
}
grep -q '^FROM wordpress:7\.0\.2-php8\.3-apache$' /workspace/wordpress/Dockerfile || {
echo "The WordPress image must use the patched 7.0.2 PHP 8.3 Apache tag." >&2
exit 1
}
grep -q 'wp-content/(uploads|files)' /workspace/wordpress/apache-hardening.conf || {
echo "Apache hardening must block PHP execution below uploads/files." >&2
exit 1
}
grep -q 'wp-content/mu-plugins' /workspace/wordpress/apache-hardening.conf || {
echo "Apache hardening must block direct mu-plugin probing." >&2
exit 1
}
grep -q "'publicly_queryable'[[:space:]]*=>[[:space:]]*false" /workspace/wordpress/mu-plugins/azionelab-content.php || {
echo "Structured show content must not be exposed as standalone public routes." >&2
exit 1
}
grep -q "location = /wp-cron.php" /workspace/nginx/proxy-routes.conf || {
echo "NGINX must block external wp-cron.php requests." >&2
exit 1
}
grep -q "location = /readme.html" /workspace/nginx/proxy-routes.conf || {
echo "NGINX must hide the WordPress readme.html file." >&2
exit 1
}
grep -q "location ^~ /wp-content/mu-plugins/" /workspace/nginx/proxy-routes.conf || {
echo "NGINX must hide the mu-plugins directory from public probing." >&2
exit 1
}