WordPress Security Protection: Malware scanner, Firewall, Login Security, DB Backup, Anti-Spam...
Category Scores
Top Issues by Category
security5,418
maintainability4,117
Issues Details
9,997 issues found in latest scan
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<input type=\"checkbox\" name=\"bps_ace_custom_roles[$role_name]\" value=\"1\""'.
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ACE_Expiration".
$_POST['DBBDescription'] not unslashed before sanitization. Use wp_unslash() or similar
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
Detected usage of a non-sanitized input variable: $_FILES['bps_cc_import']['name']
Detected usage of a possibly undefined superglobal array index: $_FILES['bps_cc_import']['name']. Check that the array index exists before using it.
Plugin folders are deleted when upgraded. Do not save data to the plugin folder using copy(). Detected usage of constant WP_CONTENT_DIR. Use wp_upload_dir() to get the uploads directory path or save to the database instead.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
Processing form data without nonce verification.
A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders.
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: chmod().
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bpsDBRowCount".
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
Writing files using ABSPATH may be problematic. Consider using wp_upload_dir() instead if storing user data or generated files.
Use placeholders and $wpdb->prepare(); found interpolated variable $DBB_table_name at "SELECT * FROM $DBB_table_name WHERE bps_job_type = %s"
Unescaped parameter $DBB_table_name used in $wpdb->get_results()\n$DBB_table_name assigned unsafely at line 47.
Processing form data without nonce verification.
unlink() is discouraged. Use wp_delete_file() to delete a file.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: is_writable().
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<input type=\"checkbox\" name=\"bps_ace_custom_roles[$role_name]\" value=\"1\""'. | 2,856 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ACE_Expiration". | 2,241 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_POST['DBBDescription'] not unslashed before sanitization. Use wp_unslash() or similar | 592 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 586 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_FILES['bps_cc_import']['name'] | 549 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_FILES['bps_cc_import']['name']. Check that the array index exists before using it. | 504 |
| PluginCheck.CodeAnalysis.WriteFile.PluginDirectoryWrite | ERROR | Plugin folders are deleted when upgraded. Do not save data to the plugin folder using copy(). Detected usage of constant WP_CONTENT_DIR. Use wp_upload_dir() to get the uploads directory path or save to the database instead. | 426 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fwrite | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite(). | 362 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins". | 206 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 151 |
| WordPress.WP.I18n.MissingArgDomain | ERROR | Missing $domain parameter in function call to __(). | 140 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 128 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | A function call to __() with texts containing placeholders was found, but was not accompanied by a "translators:" comment on the line above to clarify the meaning of the placeholders. | 127 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 125 |
| WordPress.WP.AlternativeFunctions.file_system_operations_chmod | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: chmod(). | 124 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bpsDBRowCount". | 88 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fclose | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose(). | 86 |
| PluginCheck.CodeAnalysis.WriteFile.ABSPATHDetected | WARNING | Writing files using ABSPATH may be problematic. Consider using wp_upload_dir() instead if storing user data or generated files. | 85 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $DBB_table_name at "SELECT * FROM $DBB_table_name WHERE bps_job_type = %s" | 76 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $DBB_table_name used in $wpdb->get_results()\n$DBB_table_name assigned unsafely at line 47. | 66 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 61 |
| WordPress.WP.AlternativeFunctions.unlink_unlink | ERROR | unlink() is discouraged. Use wp_delete_file() to delete a file. | 61 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fopen | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen(). | 58 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 56 |
| WordPress.WP.AlternativeFunctions.file_system_operations_is_writable | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: is_writable(). | 48 |
Latest Snapshot
Findings
9,997
Errors
5,048
Warnings
4,949
Score History
First score snapshot
First scan completed Jun 20, 2026
v7.2 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 20, 2026
v7.2
0
Latest
- Findings
- 9,997
- Errors
- 5,048
- Warnings
- 4,949
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 20, 2026Latest | 0 | 9,997 | 5,048 | 4,949 | v7.2 | 2.0.0 | 2026.06-mvp-static-v2 |