AI ChatBot for WordPress WPBot addon to Build conversational Forms. Generate Leads, Create Forms inside ChatBot. Contact forms, booking forms & more
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
871
4 issue groups
Security
781
9 issue groups
Maintainability
750
12 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'conversational-forms' but got 'chatbot-forms'.783
- Category
- I18n
- Occurrences
- 783
- Severity
- error
Sample message
Mismatched text domain. Expected 'conversational-forms' but got 'chatbot-forms'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$action_links".444
- Category
- Maintainability
- Occurrences
- 444
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$action_links".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$active'.177
- Category
- Security
- Occurrences
- 177
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$active'.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.130
- Category
- Security
- Occurrences
- 130
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_GET[$field[ 'slug' ]] not unslashed before sanitization. Use wp_unslash() or similar128
- Category
- Security
- Occurrences
- 128
- Severity
- warning
Sample message
$_GET[$field[ 'slug' ]] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES[$field['ID']]126
- Category
- Security
- Occurrences
- 126
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES[$field['ID']]
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.120
- Category
- Security
- Occurrences
- 120
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;80
- Category
- Maintainability
- Occurrences
- 80
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to __().57
- Category
- I18n
- Occurrences
- 57
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.54
- Category
- Maintainability
- Occurrences
- 54
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
Show 15 moreShow less
WARNINGSecurityInput is not validated46
- Category
- Security
- Occurrences
- 46
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES[$field['ID']]['name']. Check that the array index exists before using it.
WARNINGMaintainabilityNo Caching44
- Category
- Maintainability
- Occurrences
- 44
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityNon-prefixed function32
- Category
- Maintainability
- Occurrences
- 32
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "add_menu_wpbot_adding_page".
ERRORSecuritySQL query is not prepared21
- Category
- Security
- Occurrences
- 21
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $entry_ids
WARNINGMaintainabilityNon-prefixed constant21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "CF_PRO_BASENAME".
ERRORMaintainabilitystrip tags strip tags21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityNo PHP code found18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
No PHP code was found in this file and short open tags are not allowed by this install of PHP. This file may be using short open tags but PHP does not allow them.
WARNINGSecurityInterpolated SQL is not prepared17
- Category
- Security
- Occurrences
- 17
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $table at "DELETE FROM $table WHERE `id` IN( %s )"
ERRORSecurityDatabase parameter is not escaped16
- Category
- Security
- Occurrences
- 16
- Severity
- error
Sample message
Unescaped parameter $entry_ids used in $wpdb->query()\n$entry_ids used without escaping.
ERRORI18nMissing Translators Comment16
- Category
- I18n
- Occurrences
- 16
- 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.
ERRORMaintainabilitywp function not compatible with requires wp16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- error
Sample message
Function "get_privacy_policy_url()" requires WordPress 4.9.6, but your plugin minimum supported version is WordPress 4.6.0.
ERRORI18nNon Singular String Literal Text15
- Category
- I18n
- Occurrences
- 15
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $config[ 'description' ]
WARNINGMaintainabilityslow db query meta value7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Detected usage of meta_value, possible slow query.
WARNINGMaintainabilityNot In Footer7
- Category
- Maintainability
- Occurrences
- 7
- 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.
ERRORMaintainabilityparse url parse url6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
Score History
2 score snapshots
v1.4.7
24
Latest
- Findings
- 2,480
- Errors
- 1,254
- Warnings
- 1,226
- Check
- 2.0.0
v1.4.6
24
Score
- Findings
- 2,467
- Errors
- 1,254
- Warnings
- 1,213
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 2,480 | 1,254 | 1,226 | v1.4.7 | 2.0.0 |
| 24 | 2,467 | 1,254 | 1,213 | v1.4.6 | 2.0.0 |