AI ChatBot for WordPress WPBot - Automated 24/7 Live Chat Customer Support. NATIVE, Lead Generation, Forms, Gemini, DialogFlow, ChatGPT, OpenRouter
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
643
16 issue groups
Security
588
8 issue groups
I18n
10
1 issue group
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$action_links".277
- Category
- Maintainability
- Occurrences
- 277
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$action_links".
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE['last_five_prompt']169
- Category
- Security
- Occurrences
- 169
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['last_five_prompt']
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_COOKIE["last_five_prompt"]. Check that the array index exists before using it.157
- Category
- Security
- Occurrences
- 157
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_COOKIE["last_five_prompt"]. Check that the array index exists before using it.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.105
- Category
- Security
- Occurrences
- 105
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitycurl curl setoptUsing cURL functions is highly discouraged. Use wp_remote_get() instead.99
- Category
- Maintainability
- Occurrences
- 99
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_wpbot_generate_word_variations".78
- Category
- Maintainability
- Occurrences
- 78
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_wpbot_generate_word_variations".
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.59
- Category
- Security
- Occurrences
- 59
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $ids_string at "DELETE FROM $table_name WHERE id IN ($ids_string)"47
- Category
- Security
- Occurrences
- 47
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $ids_string at "DELETE FROM $table_name WHERE id IN ($ids_string)"
WARNINGMaintainabilityNon-prefixed hook nameHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'wpcommerce_thankyou_' . $order->get_payment_method()".39
- Category
- Maintainability
- Occurrences
- 39
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'wpcommerce_thankyou_' . $order->get_payment_method()".
WARNINGSecurityRequest data is not unslashed$_COOKIE['last_five_prompt'] not unslashed before sanitization. Use wp_unslash() or similar30
- Category
- Security
- Occurrences
- 30
- Severity
- warning
Sample message
$_COOKIE['last_five_prompt'] not unslashed before sanitization. Use wp_unslash() or similar
Show 15 moreShow less
ERRORMaintainabilitywp function not compatible with requires wp29
- Category
- Maintainability
- Occurrences
- 29
- Severity
- error
Sample message
Function "is_php_version_compatible()" requires WordPress 5.2.0, but your plugin minimum supported version is WordPress 4.6.0.
ERRORMaintainabilitycurl curl close20
- Category
- Maintainability
- Occurrences
- 20
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORMaintainabilitycurl curl exec20
- Category
- Maintainability
- Occurrences
- 20
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORSecurityUnsupported Identifier Placeholder14
- Category
- Security
- Occurrences
- 14
- Severity
- error
Sample message
The %i modifier is only supported in WP 6.2 or higher. Found: "%i".
WARNINGMaintainabilityNon-prefixed constant14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "openaiaddon_ENVATO_PLUGIN_ID".
ERRORMaintainabilitycurl curl errno10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORMaintainabilitycurl curl error10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
WARNINGMaintainabilityMissing Version10
- Category
- Maintainability
- Occurrences
- 10
- 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.
WARNINGMaintainabilityNot In Footer10
- Category
- Maintainability
- Occurrences
- 10
- 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.
ERRORI18nNon Singular String Literal Text10
- Category
- I18n
- Occurrences
- 10
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: "Example: You are a helpful and intelligent assistant for the website " . site_url() . ". Use live website data and the provided context to respond accurately and briefly. Stay relevant and do not introduce additional topics."
ERRORSecurityQuoted Simple Placeholder7
- Category
- Security
- Occurrences
- 7
- Severity
- error
Sample message
Simple placeholders should not be quoted in the query string in $wpdb->prepare(). Found: "%s".
WARNINGMaintainabilityslow db query tax query7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of tax_query, possible slow query.
WARNINGMaintainabilityNon-prefixed class7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "OpenAi_WPBot_Menus".
ERRORMaintainabilitybadly named files7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
File and folder names must not contain spaces or special characters.
WARNINGMaintainabilityDiscouraged PHP function6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
Score History
2 score snapshots
v8.4.7
23
Latest
- Findings
- 1,302
- Errors
- 264
- Warnings
- 1,038
- Check
- 2.0.0
v8.4.6
23
Score
- Findings
- 1,282
- Errors
- 264
- Warnings
- 1,018
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 1,302 | 264 | 1,038 | v8.4.7 | 2.0.0 |
| 23 | 1,282 | 264 | 1,018 | v8.4.6 | 2.0.0 |