Created
March 22, 2018 21:17
-
-
Save felipelavinz/5a44c91fdf3c211c78bb75e47ecf076c to your computer and use it in GitHub Desktop.
Mitigación de CVE-2018-6389 para WordPress con lighttpd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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