This file contains 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
_____ _____ _____ _____ _____ _____ _____ _____ __ __ | |
(\___/) | __ || _ || __|| | | | __ || | || | || | || | | | |
(='.'=) | __ -|| ||__ || | | __ -|| | || | | || | | ||_ _| | |
(")_(") |_____||__|__||_____||__|__| |_____||_____||_|___||_|___| |_| | |
Bash Bunny by Hak5 USB Attack/Automation Platform | |
-+- QUICK REFERENCE GUIDE v1.4 -+- |
This file contains 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
#This file includes common security considerations for wordpress using nginx. | |
if ($request_method !~ ^(GET|POST|HEAD)$ ) {return 444;} | |
location ~* wp-admin/includes { deny all; } | |
location ~* wp-includes/theme-compat/ { deny all; } | |
location ~* wp-includes/js/tinymce/langs/.*.php { deny all; } | |
location = /xmlrpc.php { deny all; } | |
#Deny access to wp-content folders for suspicious files |