Knowledge base article
Remove Wordfence firewall block via MySQL CLI
Related articles
Basic WordPress security and site management
Optimising Wordfence firewall and security settings
Other WordPress articles
Accessing your site before changing DNS
Basic WordPress security and site management
Check MySQL database table disk usage
Configure object cache with memcached and Litespeed Cache plugin
Create a clone of your website
Create a WordPress administrator via MySQL CLI
Create a WordPress administrator via phpMyAdmin
Create a WordPress cron task in cPanel
Disable automatic WordPress updates via wp-config.php
Domain options for shared hosting
Download or restore individual files, directories or database backups with JetBackup
Enabling PHP extensions, Changing PHP Version and Setting PHP Options
Export or Import a MySQL database via CLI
Force HTTPS via .htaccess (cPanel)
Go live with your WordPress staging website
Help! I need a backup of my cPanel-hosted website
How did my WordPress website get hacked? What do I do?
How to ensure website generated emails are delivered successfully
How to issue a Let’s Encrypt certificate
How to remove Site Software management
Introduction to LiteSpeed Cache
Manual WordPress migrations in a nutshell
Migrate remote staging website to local hosting server
Migrate remote transactional website to local server
My site and/or email service is down
Optimising Wordfence firewall and security settings
Prevent website generated spam with CAPTCHA
Push updates from a staging to production website
Reconfigure production website to subdomain
Recover your hacked WordPress website
Secure your WordPress installation
The SLA – Best effort versus 99.9% versus 100%
Understanding CloudLinux resource limits
Update a WordPress website to use a new domain name
Update your WordPress username via phpMyAdmin
WordPress install still shows Serversaurus “new customer” landing page
This guide will teach you how to remove a Wordfence firewall block using MySQL command line tools
Has WordFence blacklisted you from your own website? Fear not! This guide will teach you how to regain access by removing the Wordfence firewall block via MySQL command line interface.
To complete this guide, please ensure you have:
- SSH Access - Serversaurus relies on key based authentication to login via SSH/SFTP, if you haven't already, generate your SSH key pair and configure it in cPanel before proceeding with the next steps
- MySQL database credentials - These can be found within the wp-config.php file.
Let's get started!
- SSH to your hosting server.
- Login to MySQL using the below command, enter your password when prompted:
Update the following command with your MySQL usermysql -u mysql_user -p;
- Change into your database:
Update the following command with your MySQL databaseuse database_name;
- Now we're going to clear all WordFence blocks by truncating the wp_wfblocks7 table:
Update the following command with your database prefix, the default WordPress DB prefix is wp_TRUNCATE TABLE wp_wfblocks7;
Nice work! The block will now be removed!
Published June 21, 2022. Last updated November 30, 2023.
Can't find what you're looking for?
"*" indicates required fields