We provide you with a solution that enables you to collect customer reviews about your website and products which will show on your website and on a a …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,232
13 issue groups
Security
390
11 issue groups
I18n
149
1 issue group
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$CONFIG_NETREVIEWS".764
- Category
- Maintainability
- Occurrences
- 764
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$CONFIG_NETREVIEWS".
ERRORMaintainabilitywp function not compatible with requires wpFunction "__()" requires WordPress 2.1.0, but your plugin minimum supported version is WordPress 1.3.1.175
- Category
- Maintainability
- Occurrences
- 175
- Severity
- error
Sample message
Function "__()" requires WordPress 2.1.0, but your plugin minimum supported version is WordPress 1.3.1.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'netreviews' but got 'av'.149
- Category
- I18n
- Occurrences
- 149
- Severity
- error
Sample message
Mismatched text domain. Expected 'netreviews' but got 'av'.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.105
- Category
- Maintainability
- Occurrences
- 105
- 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().105
- Category
- Maintainability
- Occurrences
- 105
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $fields81
- Category
- Security
- Occurrences
- 81
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $fields
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$attribute'.72
- Category
- Security
- Occurrences
- 72
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$attribute'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.71
- Category
- Security
- Occurrences
- 71
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORSecurityDatabase parameter is not escapedUnescaped parameter $fields used in $wpdb->get_results()\n$fields used without escaping.59
- Category
- Security
- Occurrences
- 59
- Severity
- error
Sample message
Unescaped parameter $fields used in $wpdb->get_results()\n$fields used without escaping.
WARNINGSecurityRequest data is not unslashed$_GET['nrLang'] not unslashed before sanitization. Use wp_unslash() or similar28
- Category
- Security
- Occurrences
- 28
- Severity
- warning
Sample message
$_GET['nrLang'] not unslashed before sanitization. Use wp_unslash() or similar
Show 15 moreShow less
WARNINGSecurityInput is not validated26
- Category
- Security
- Occurrences
- 26
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['nrLang']. Check that the array index exists before using it.
WARNINGSecurityInterpolated SQL is not prepared24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $id_product at "netreviews_products_reviews WHERE ref_product = '$id_product' AND lang = '$lang' GROUP BY rate"
WARNINGMaintainabilityNon-prefixed hook name21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "wpml_current_language".
ERRORMaintainabilitydate date18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityNon Enqueued Script12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
WARNINGSecurityNonce verification recommended11
- Category
- Security
- Occurrences
- 11
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilitySchema Change9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGSecurityDatabase parameter is not escaped8
- Category
- Security
- Occurrences
- 8
- Severity
- warning
Sample message
Unescaped parameter $table used in $wpdb->query()\n$table assigned unsafely at line 20.
WARNINGSecurityInput is not sanitized7
- Category
- Security
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['nrLang']
WARNINGMaintainabilityNon-prefixed function5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_specific_style".
ERRORMaintainabilitycurl curl setopt5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
WARNINGMaintainabilityMissing Version5
- Category
- Maintainability
- Occurrences
- 5
- 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.
ERRORMaintainabilityMissing direct file access protection5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORMaintainabilityOffloaded Content3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.
WARNINGSecurityMissing nonce verification3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Processing form data without nonce verification.
External Connections
Potential connections found in static code analysis.
Outbound calls
66
External assets
6
Incoming endpoints
0
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
No public endpoints detected.
Score History
First score snapshot
v2.4.6
19
Latest
- Findings
- 1,807
- Errors
- 671
- Warnings
- 1,136
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 19 | 1,807 | 671 | 1,136 | v2.4.6 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.