wp_bearmor_malware_detections

Static

Stores bearmor malware detections data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDYES
file_pathVARCHAR(500)NO
pattern_idVARCHAR(100)NO
pattern_nameVARCHAR(255)NO
severityENUM('critical', 'high', 'medium', 'low')NO
categoryVARCHAR(100)NO
descriptionTEXTYES
line_numberINT UNSIGNEDNO
code_snippetTEXTYES
matched_textTEXTYES
detected_atDATETIMENO
statusENUM('pending', 'whitelisted', 'quarantined', 'false_positive')YES
action_byBIGINT UNSIGNEDYES

CREATE TABLE Statement

CREATE TABLE wp_bearmor_malware_detections ( id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, file_path VARCHAR(500) NOT NULL, pattern_id VARCHAR(100) NOT NULL, pattern_name VARCHAR(255) NOT NULL, severity ENUM('critical', 'high', 'medium', 'low') NOT NULL, category VARCHAR(100) NOT NULL, description TEXT, line_number INT UNSIGNED NOT NULL, code_snippet TEXT, matched_text TEXT, detected_at DATETIME NOT NULL, status ENUM('pending', 'whitelisted', 'quarantined', 'false_positive') DEFAULT 'pending', action_by BIGINT UNSIGNED, KEY file_path (file_path), KEY severity (severity), KEY status (status), KEY detected_at (detected_at) ) $charset_collate;"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Bearmor Security, 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_bearmor_malware_detections`;

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

Other tables from Bearmor Security