Skip to content

Instantly share code, notes, and snippets.

@felipelavinz
Created March 22, 2018 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipelavinz/5a44c91fdf3c211c78bb75e47ecf076c to your computer and use it in GitHub Desktop.
Save felipelavinz/5a44c91fdf3c211c78bb75e47ecf076c to your computer and use it in GitHub Desktop.
Mitigación de CVE-2018-6389 para WordPress con lighttpd
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_rewrite",
"mod_accesslog",
"mod_evasive"
)
$HTTP["url"] =~ "/wp-admin/load-(styles|scripts).php(.*)" {
evasive.max-conns-per-ip = 8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment