The ultimate solution for resetting your WordPress database or specific components to their default settings using the advanced reset features.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
414
11 issue groups
Maintainability
384
13 issue groups
I18n
110
1 issue group
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$accordion_id'.167
- Category
- Security
- Occurrences
- 167
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$accordion_id'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ItemsFetcherService".166
- Category
- Maintainability
- Occurrences
- 166
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ItemsFetcherService".
ERRORI18nNon Singular String Literal DomainThe $domain parameter must be a single text string literal. Found: AWR_PLUGIN_TEXTDOMAIN110
- Category
- I18n
- Occurrences
- 110
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: AWR_PLUGIN_TEXTDOMAIN
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.92
- Category
- Security
- Occurrences
- 92
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "AWP_PRO_RESET_OPTION_EDIT_INFOS".54
- Category
- Maintainability
- Occurrences
- 54
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "AWP_PRO_RESET_OPTION_EDIT_INFOS".
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.36
- Category
- Maintainability
- Occurrences
- 36
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().36
- Category
- Maintainability
- Occurrences
- 36
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.33
- Category
- Security
- Occurrences
- 33
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $new_name31
- Category
- Security
- Occurrences
- 31
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $new_name
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
Show 15 moreShow less
WARNINGSecurityRequest data is not unslashed19
- Category
- Security
- Occurrences
- 19
- Severity
- warning
Sample message
$_REQUEST['awr_item_type'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not sanitized17
- Category
- Security
- Occurrences
- 17
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_REQUEST['bloc_id']
WARNINGSecurityDatabase parameter is not escaped15
- Category
- Security
- Occurrences
- 15
- Severity
- warning
Sample message
Unescaped parameter $destination_table used in $wpdb->query()
WARNINGMaintainabilityNon-prefixed namespace15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- warning
Sample message
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "awr\endpoints".
WARNINGSecurityInput is not validated14
- Category
- Security
- Occurrences
- 14
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_REQUEST['awr_item_type']. Check that the array index exists before using it.
WARNINGMaintainabilityMissing Version13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- warning
Sample message
Resource version not set in call to wp_enqueue_script(). This means new versions of the script may not always be loaded due to browser caching.
WARNINGSecurityInterpolated SQL is not prepared10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $old_backup_table at "DROP TABLE `$old_backup_table`"
ERRORSecurityException output is not escaped9
- Category
- Security
- Occurrences
- 9
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$comment_type'.
WARNINGMaintainabilityNot In Footer9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.
WARNINGMaintainabilitySchema Change8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
ERRORMaintainabilitydate date8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORSecurityDatabase parameter is not escaped7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Unescaped parameter $new_name used in $wpdb->query()\n$new_name assigned unsafely at line 364.
WARNINGMaintainabilityNon-prefixed function7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "awr_activation_warning".
WARNINGMaintainabilityMixed line endings3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
File has mixed line endings; this may cause incorrect results
ERRORMaintainabilitymysql mysql error3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
Accessing the database directly should be avoided. Please use the $wpdb object and associated functions instead. Found: mysql_error.
External Connections
Not analyzed yet.
Score History
First score snapshot
v2.0.7
25
Latest
- Findings
- 939
- Errors
- 475
- Warnings
- 464
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 939 | 475 | 464 | v2.0.7 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.