WordPress Security Protection: Malware scanner, Firewall, Login Security, DB Backup, Anti-Spam...
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
5,418
9 issue groups
Maintainability
4,117
14 issue groups
I18n
267
2 issue groups
ERRORSecurityOutput Not EscapedAll 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
- Category
- Security
- Occurrences
- 2,856
- Severity
- error
Sample message
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\""'.
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ACE_Expiration".2,241
- Category
- Maintainability
- Occurrences
- 2,241
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ACE_Expiration".
WARNINGSecurityMissing Unslash$_POST['DBBDescription'] not unslashed before sanitization. Use wp_unslash() or similar592
- Category
- Security
- Occurrences
- 592
- Severity
- warning
Sample message
$_POST['DBBDescription'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORSecurityUnsafe Printing FunctionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.586
- Category
- Security
- Occurrences
- 586
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_FILES['bps_cc_import']['name']549
- Category
- Security
- Occurrences
- 549
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['bps_cc_import']['name']
WARNINGSecurityInput Not ValidatedDetected usage of a possibly undefined superglobal array index: $_FILES['bps_cc_import']['name']. Check that the array index exists before using it.504
- Category
- Security
- Occurrences
- 504
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['bps_cc_import']['name']. Check that the array index exists before using it.
ERRORMaintainabilityPlugin Directory WritePlugin 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
- Category
- Maintainability
- Occurrences
- 426
- Severity
- error
Sample message
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.
ERRORMaintainabilityfile system operations fwriteFile operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().362
- Category
- Maintainability
- Occurrences
- 362
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".206
- Category
- Maintainability
- Occurrences
- 206
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "active_plugins".
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.151
- Category
- Maintainability
- Occurrences
- 151
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
Show 15 moreShow less
ERRORI18nMissing Arg Domain140
- Category
- I18n
- Occurrences
- 140
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGSecurityMissing128
- Category
- Security
- Occurrences
- 128
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORI18nMissing Translators Comment127
- Category
- I18n
- Occurrences
- 127
- Severity
- error
Sample message
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.
WARNINGMaintainabilityNo Caching125
- Category
- Maintainability
- Occurrences
- 125
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORMaintainabilityfile system operations chmod124
- Category
- Maintainability
- Occurrences
- 124
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: chmod().
WARNINGMaintainabilityNon Prefixed Function Found88
- Category
- Maintainability
- Occurrences
- 88
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "bpsDBRowCount".
ERRORMaintainabilityfile system operations fclose86
- Category
- Maintainability
- Occurrences
- 86
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
WARNINGMaintainabilityABSPATHDetected85
- Category
- Maintainability
- Occurrences
- 85
- Severity
- warning
Sample message
Writing files using ABSPATH may be problematic. Consider using wp_upload_dir() instead if storing user data or generated files.
WARNINGSecurityInterpolated Not Prepared76
- Category
- Security
- Occurrences
- 76
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $DBB_table_name at "SELECT * FROM $DBB_table_name WHERE bps_job_type = %s"
WARNINGSecurityUnescaped DBParameter66
- Category
- Security
- Occurrences
- 66
- Severity
- warning
Sample message
Unescaped parameter $DBB_table_name used in $wpdb->get_results()\n$DBB_table_name assigned unsafely at line 47.
WARNINGSecurityRecommended61
- Category
- Security
- Occurrences
- 61
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityunlink unlink61
- Category
- Maintainability
- Occurrences
- 61
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
ERRORMaintainabilityfile system operations fopen58
- Category
- Maintainability
- Occurrences
- 58
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
ERRORMaintainabilitymissing direct file access protection56
- Category
- Maintainability
- Occurrences
- 56
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilityfile system operations is writable48
- Category
- Maintainability
- Occurrences
- 48
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: is_writable().
Score History
First score snapshot
v7.2
0
Latest
- Findings
- 9,997
- Errors
- 5,048
- Warnings
- 4,949
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 0 | 9,997 | 5,048 | 4,949 | v7.2 | 2.0.0 |