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
#!/bin/bash | |
# what's this all about then? | |
description="Use 'nslookup' to query one or more domains, using a pre-defined list of nameservers" | |
# set nameservers as associative array | |
declare -A nameservers | |
nameservers['AdGuard DNS']='94.140.14.14' | |
nameservers['Alternate DNS']='76.76.19.19' | |
nameservers['CloudFlare']='1.1.1.1' |
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
[wordpress] | |
enabled = true | |
filter = wordpress | |
action = iptables-multiport[name="wordpress", port="http,https"] | |
slack-notify[name="wordpress"] | |
logpath = /sites/*/logs/access.log | |
/var/log/nginx/access.log | |
maxretry = 5 | |
backend = polling |
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
#!/bin/bash | |
# Call wp-cron.php on WP Multisite installations | |
# Requires WP-CLI | |
# Looks for WP_PATH in {user_home}/wp-cli.yml, otherwise must pass in as $1 | |
# Set up cron job with crontab -e | |
# Use MAILTO to send output to email or write to a log file 'bash ~/wp_multisite_cron.sh >> crontab.log' | |
# [email protected] | |
# */1 * * * * bash ~/wp_multisite_cron.sh [WP_PATH] |
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
<?php | |
// Hash a password | |
// by Gavin Botica | |
// requires PHP 5.5+ | |
define("RQD_PHP_VER", "5.5"); | |
// check php version | |
if (version_compare(PHP_VERSION, RQD_PHP_VER) == -1 ) { | |
echo "<p><b>ERROR:</b> PHP <i>" . RQD_PHP_VER . "</i> required. Version <i>" . PHP_VERSION . "</i> installed.</p>"; |
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
{ | |
"use_https": "", | |
"purge_amazonS3_info": "" | |
} |
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
[wp-xmlrpc] | |
enabled = true | |
filter = wp-xmlrpc | |
action = iptables-multiport[name=wp-xmlrpc, port="http,https"] | |
logpath = /var/www/vhosts/system/*/logs/*access*log | |
/var/log/httpd/*access_log | |
bantime = 86400 | |
maxretry = 0 |
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
/*----------------------------------------------------------------------------*/ | |
// redirects for login / logout | |
/*----------------------------------------------------------------------------*/ | |
add_filter('woocommerce_login_redirect', 'login_redirect'); | |
function login_redirect($redirect_to) { | |
return home_url(); | |
} |
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
[wp-login] | |
enabled = true | |
filter = wp-login | |
action = iptables-multiport[name=wp-login, port="http,https"] | |
sendmail[dest="[email protected]", sendername="Fail2Ban", sender="fail2ban", name="wp-login"] | |
logpath = /var/www/vhosts/system/*/logs/access*_log | |
maxretry = 5 | |
findtime = 60 | |
bantime = 1200 |