Track website visitors, log and analyze their behavior and increase your sales using WP Tao – a powerful, easy-to-use WordPress tracking plugin.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,175
14 issue groups
Maintainability
338
8 issue groups
I18n
90
3 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$a'.283
- Category
- Security
- Occurrences
- 283
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$a'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.270
- Category
- Security
- Occurrences
- 270
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.190
- Category
- Security
- Occurrences
- 190
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $column at "SELECT $column FROM $this->table_name WHERE $column_where = %s LIMIT 1;"126
- Category
- Security
- Occurrences
- 126
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $column at "SELECT $column FROM $this->table_name WHERE $column_where = %s LIMIT 1;"
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.73
- Category
- Maintainability
- Occurrences
- 73
- 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().72
- Category
- Maintainability
- Occurrences
- 72
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityRequest data is not unslashed$_COOKIE[WTBP_WPTAO_COOKIE_NAME] not unslashed before sanitization. Use wp_unslash() or similar69
- Category
- Security
- Occurrences
- 69
- Severity
- warning
Sample message
$_COOKIE[WTBP_WPTAO_COOKIE_NAME] not unslashed before sanitization. Use wp_unslash() or similar
ERRORI18nMissing Translators CommentA 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.64
- Category
- I18n
- Occurrences
- 64
- 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.
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $request59
- Category
- Security
- Occurrences
- 59
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $request
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args".59
- Category
- Maintainability
- Occurrences
- 59
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$args".
Show 15 moreShow less
WARNINGSecurityInput is not sanitized56
- Category
- Security
- Occurrences
- 56
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['action']
ERRORMaintainabilityMissing direct file access protection51
- Category
- Maintainability
- Occurrences
- 51
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilitywp function not compatible with requires wp41
- Category
- Maintainability
- Occurrences
- 41
- Severity
- error
Sample message
Function "mb_strlen()" requires WordPress 4.2.0, but your plugin minimum supported version is WordPress 3.8.0.
ERRORSecurityDatabase parameter is not escaped38
- Category
- Security
- Occurrences
- 38
- Severity
- error
Sample message
Unescaped parameter $em used in $wpdb->get_results()\n$em assigned unsafely at line 92.
ERRORMaintainabilitydate date26
- Category
- Maintainability
- Occurrences
- 26
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGSecurityDatabase parameter is not escaped25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Unescaped parameter $e used in $wpdb->get_results()\n$e assigned unsafely at line 71.
ERRORI18nUnordered Placeholders Text18
- Category
- I18n
- Occurrences
- 18
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$d", but got "%s, %d" in '<li>%s (%d)</li>'.
ERRORSecurityException output is not escaped16
- Category
- Security
- Occurrences
- 16
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$e'.
ERRORSecurityQuoted Simple Placeholder14
- Category
- Security
- Occurrences
- 14
- Severity
- error
Sample message
Simple placeholders should not be quoted in the query string in $wpdb->prepare(). Found: '%d'.
WARNINGSecuritywp redirect wp redirect10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
WARNINGSecurityInput is not validated10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['event_id']. Check that the array index exists before using it.
WARNINGSecurityMissing nonce verification9
- Category
- Security
- Occurrences
- 9
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityslow db query meta key8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Detected usage of meta_key, possible slow query.
WARNINGMaintainabilityslow db query meta value8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
WARNINGI18nNo Html Wrapped Strings8
- Category
- I18n
- Occurrences
- 8
- Severity
- warning
Sample message
Translatable string should not be wrapped in HTML. Found: '<h2>Database</h2>'
External Connections
Potential connections found in static code analysis.
Outbound calls
29
External assets
0
Incoming endpoints
6
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
wp_ajax
Admin AJAX endpoints5
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v1.3.1
23
Latest
- Findings
- 1,651
- Errors
- 895
- Warnings
- 756
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 1,651 | 895 | 756 | v1.3.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.