Two defects in the wp-admin edge gate (2171bed,704be38): 1. HAProxy 3.0.11 rejects the inline regsub redirect (regsub((^|/)wp-admin/.*,\1wp-login.php)) with "invalid arg 2 in converter 'regsub': missing arguments". Verified this is a converter-argument-parenthesis-counting limitation -- the inner "(^|/)" grouping parens are misread as closing the outer regsub() call, and neither quoting nor backslash-escaping the parens helps. Since HTTP paths always start with "/", the group is unnecessary: compute the login URL in its own set-var, matching the literal substring "/wp-admin/" (no group, no backreference) and replacing it with the literal "/wp-login.php" -- regsub only replaces the matched substring, so a subdirectory-install prefix survives untouched. 2. wp_admin_allowed used a bare path_end suffix match (/admin-ajax.php etc), so /wp-admin/evil/admin-ajax.php matched both wp_admin_path and the allowlist and sailed through the gate ungated. Anchored each entry to /wp-admin/<file>. Verified against real HAProxy 3.0.11-1+deb13u3: haproxy -c exit 0, and live curl against the real generated config's literal lines confirms root-install and subdirectory-install redirects, the anchored-allowlist fix, cookie exemption, and non-wp-admin passthrough all behave correctly. Extends scripts/test-wpadmin-gate.py with regression tests for the anchored allowlist and the set-var ordering/no-inline-regsub guard. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
155 lines
6.5 KiB
Python
155 lines
6.5 KiB
Python
#!/usr/bin/env python3
|
|
"""Regression tests for the WordPress admin edge gate in hap_listener.tpl.
|
|
|
|
Why this file exists
|
|
--------------------
|
|
Unauthenticated GETs to /wp-admin/* were reaching PHP, booting WordPress just to
|
|
produce a login redirect and exhausting lsphp pools under a distributed
|
|
low-and-slow attack. The gate redirects them at the edge instead.
|
|
|
|
Two properties are easy to get wrong and invisible to `haproxy -c`:
|
|
|
|
* ORDERING. `is_whitelisted` reads var(txn.real_ip). If the rule renders before
|
|
the set-var chain, the whitelist evaluates against an unset variable.
|
|
* THE ALLOWLIST. wp-login.php loads its OWN css/js from /wp-admin/. Dropping
|
|
those entries leaves every login page on the fleet unstyled, while still
|
|
returning 200 -- a silent regression.
|
|
|
|
Running
|
|
-------
|
|
python3 scripts/test-wpadmin-gate.py
|
|
"""
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
import logging
|
|
import tempfile
|
|
import unittest
|
|
|
|
MODULE_DIR = os.path.abspath(
|
|
os.environ.get('HAPROXY_MANAGER_DIR',
|
|
os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
|
|
)
|
|
os.chdir(MODULE_DIR)
|
|
sys.path.insert(0, MODULE_DIR)
|
|
|
|
_LOG_DIR = tempfile.mkdtemp(prefix='haproxy-mgr-test-logs-')
|
|
_real_file_handler = logging.FileHandler
|
|
logging.FileHandler = (
|
|
lambda filename, *a, **kw: _real_file_handler(
|
|
os.path.join(_LOG_DIR, os.path.basename(filename)), *a, **kw)
|
|
)
|
|
|
|
import haproxy_manager # noqa: E402
|
|
|
|
ALLOWLIST = ('/admin-ajax.php', '/admin-post.php',
|
|
'/load-styles.php', '/load-scripts.php')
|
|
EXCLUSIONS = ('!wp_admin_allowed', '!wp_admin_asset', '!has_wp_logged_in',
|
|
'!wp_gate_exempt', '!is_local', '!is_trusted_ip', '!is_whitelisted')
|
|
|
|
|
|
def render_listener():
|
|
return haproxy_manager.template_env.get_template('hap_listener.tpl').render(
|
|
crt_path='/etc/haproxy/certs',
|
|
suspension_enabled=False,
|
|
coraza_spoe_backend=None,
|
|
)
|
|
|
|
|
|
class WpAdminGate(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.cfg = render_listener()
|
|
|
|
def test_acls_declared(self):
|
|
self.assertRegex(self.cfg, r'acl\s+wp_admin_path\s+path_reg')
|
|
self.assertRegex(self.cfg, r'acl\s+wp_admin_asset\s+path_reg')
|
|
self.assertRegex(self.cfg, r'acl\s+wp_admin_allowed\s+path_end')
|
|
self.assertIn('/etc/haproxy/wpadmin_gate_exempt.list', self.cfg)
|
|
|
|
def test_allowlist_entries_present(self):
|
|
"""wp-login.php loads its own css/js from /wp-admin/ -- see module docstring."""
|
|
for entry in ALLOWLIST:
|
|
with self.subTest(entry=entry):
|
|
self.assertIn(entry, self.cfg)
|
|
|
|
def test_static_asset_dirs_allowed(self):
|
|
self.assertRegex(self.cfg, r'wp_admin_asset\s+path_reg.*\(css\|js\|images\)')
|
|
|
|
def test_install_php_is_NOT_allowlisted(self):
|
|
"""install.php is deliberately gated -- a takeover vector on abandoned installs."""
|
|
m = re.search(r'acl\s+wp_admin_allowed\s+path_end([^\n]*)', self.cfg)
|
|
self.assertIsNotNone(m, 'wp_admin_allowed ACL not found')
|
|
self.assertNotIn('install.php', m.group(1))
|
|
|
|
def test_redirect_rule_has_all_exclusions(self):
|
|
m = re.search(r'http-request redirect[^\n]*wp_admin_path[^\n]*', self.cfg)
|
|
self.assertIsNotNone(m, 'wp-admin redirect rule not found')
|
|
rule = m.group(0)
|
|
for excl in EXCLUSIONS:
|
|
with self.subTest(exclusion=excl):
|
|
self.assertIn(excl, rule)
|
|
|
|
def test_rule_renders_after_real_ip_resolution(self):
|
|
"""is_whitelisted reads txn.real_ip; before the set-var chain it is unset."""
|
|
setvar = self.cfg.index('set-var(txn.real_ip)')
|
|
rule = self.cfg.index('wp_admin_path')
|
|
self.assertLess(setvar, rule)
|
|
|
|
def test_rule_renders_after_has_wp_logged_in_declared(self):
|
|
"""HAProxy resolves ACLs as it parses; use-before-declare fails."""
|
|
decl = self.cfg.index('acl has_wp_logged_in')
|
|
rule = self.cfg.index('wp_admin_path')
|
|
self.assertLess(decl, rule)
|
|
|
|
def test_only_one_has_wp_logged_in_declaration(self):
|
|
self.assertEqual(self.cfg.count('acl has_wp_logged_in'), 1)
|
|
|
|
def test_allowlist_entries_are_anchored_to_wp_admin(self):
|
|
"""Bare `path_end /admin-ajax.php` also matches
|
|
/wp-admin/evil/admin-ajax.php, which ALSO matches wp_admin_path
|
|
(path_reg only requires /wp-admin/ to appear somewhere) -- an
|
|
attacker-inserted path segment would then sail through the
|
|
allowlist ungated. Entries must be anchored to sit directly under
|
|
wp-admin/. Scoped to the captured ACL line only, since the
|
|
surrounding comment block also mentions these bare filenames.
|
|
"""
|
|
m = re.search(r'acl\s+wp_admin_allowed\s+path_end([^\n]*)', self.cfg)
|
|
self.assertIsNotNone(m, 'wp_admin_allowed ACL not found')
|
|
line = m.group(1)
|
|
for entry in ALLOWLIST:
|
|
with self.subTest(entry=entry):
|
|
self.assertIn('/wp-admin' + entry, line)
|
|
self.assertNotRegex(
|
|
line, r'(?<!wp-admin)' + re.escape(entry) + r'(?!\S)',
|
|
'found a bare, unanchored allowlist entry: ' + entry)
|
|
|
|
def test_wp_login_url_setvar_renders_in_correct_order(self):
|
|
"""The inline regsub-in-`location` form is rejected by real HAProxy
|
|
3.0.11 (invalid arg 2 in converter 'regsub'), so the regsub is
|
|
computed in its own set-var line instead. That set-var must render
|
|
after the set-var(txn.real_ip) chain (it must not disturb that
|
|
load-bearing chain) and before the redirect rule that consumes it.
|
|
"""
|
|
self.assertIn('set-var(txn.wp_login_url)', self.cfg)
|
|
last_real_ip_setvar = self.cfg.rindex('set-var(txn.real_ip)')
|
|
wp_login_setvar = self.cfg.index('set-var(txn.wp_login_url)')
|
|
redirect_rule = self.cfg.index('http-request redirect code 302 location %[var(txn.wp_login_url)]')
|
|
self.assertLess(last_real_ip_setvar, wp_login_setvar,
|
|
'wp_login_url set-var must render after the real_ip set-var chain')
|
|
self.assertLess(wp_login_setvar, redirect_rule,
|
|
'wp_login_url set-var must render before the redirect rule that uses it')
|
|
|
|
def test_redirect_rule_uses_setvar_not_inline_regsub(self):
|
|
"""Guards against reintroducing the rejected inline form."""
|
|
m = re.search(r'http-request redirect[^\n]*wp_admin_path[^\n]*', self.cfg)
|
|
self.assertIsNotNone(m, 'wp-admin redirect rule not found')
|
|
rule = m.group(0)
|
|
self.assertIn('%[var(txn.wp_login_url)]', rule)
|
|
self.assertNotIn('regsub', rule)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(verbosity=2)
|