wp_lunexia_ip_reputation

Static

Stores lunexia ip reputation data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
ip_addressvarchar(45)NO
threat_scorebigint(20)NO
last_activitydatetimeNO
activity_countint(10) unsignedNO
failed_loginsint(10) unsignedNO
sql_injection_attemptsint(10) unsignedNO
xss_attemptsint(10) unsignedNO
malware_uploadsint(10) unsignedNO
rate_limit_violationsint(10) unsignedNO
scanner_activitiesint(10) unsignedNO
webshells_detectedint(10) unsignedNO
noteslongtextYES
created_atdatetimeNO
expires_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_lunexia_ip_reputation ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, ip_address varchar(45) NOT NULL, threat_score bigint(20) NOT NULL DEFAULT 0, last_activity datetime NOT NULL, activity_count int(10) unsigned NOT NULL DEFAULT 1, failed_logins int(10) unsigned NOT NULL DEFAULT 0, sql_injection_attempts int(10) unsigned NOT NULL DEFAULT 0, xss_attempts int(10) unsigned NOT NULL DEFAULT 0, malware_uploads int(10) unsigned NOT NULL DEFAULT 0, rate_limit_violations int(10) unsigned NOT NULL DEFAULT 0, scanner_activities int(10) unsigned NOT NULL DEFAULT 0, webshells_detected int(10) unsigned NOT NULL DEFAULT 0, notes longtext, created_at datetime NOT NULL, expires_at datetime DEFAULT NULL, PRIMARY KEY (id), UNIQUE KEY ip_address (ip_address), KEY threat_score (threat_score), KEY last_activity (last_activity), KEY expires_at (expires_at) ) {$charset_collate};"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Lunexia .htaccess Shield, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_lunexia_ip_reputation`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Lunexia .htaccess Shield