Convert contact forms data into leads or contacts directly to one of your favourite CRM.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,154
11 issue groups
Security
581
10 issue groups
I18n
104
4 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Assigned_users_list".736
- Category
- Maintainability
- Occurrences
- 736
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Assigned_users_list".
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.157
- Category
- Maintainability
- Occurrences
- 157
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityRequest data is not unslashed$_POST[$config_fields[$i]['name']] not unslashed before sanitization. Use wp_unslash() or similar155
- Category
- Security
- Occurrences
- 155
- Severity
- warning
Sample message
$_POST[$config_fields[$i]['name']] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().149
- Category
- Maintainability
- Occurrences
- 149
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_POST[$config_fields[$i]['name']][$index]. Check that the array index exists before using it.132
- Category
- Security
- Occurrences
- 132
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST[$config_fields[$i]['name']][$index]. Check that the array index exists before using it.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.106
- Category
- Security
- Occurrences
- 106
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.67
- Category
- Security
- Occurrences
- 67
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORI18nNon Singular String Literal DomainThe $domain parameter must be a single text string literal. Found: SM_LB_SLUG39
- Category
- I18n
- Occurrences
- 39
- Severity
- error
Sample message
The $domain parameter must be a single text string literal. Found: SM_LB_SLUG
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $cal_value at "SELECT * FROM {$wpdb->prefix}cf_forms where form_id ='$cal_value'"36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $cal_value at "SELECT * FROM {$wpdb->prefix}cf_forms where form_id ='$cal_value'"
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "AjaxActionsClassPRO".35
- Category
- Maintainability
- Occurrences
- 35
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AjaxActionsClassPRO".
Show 15 moreShow less
WARNINGSecurityInput is not sanitized30
- Category
- Security
- Occurrences
- 30
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_POST['_wpnonce']
ERRORI18nText Domain Mismatch29
- Category
- I18n
- Occurrences
- 29
- Severity
- error
Sample message
Mismatched text domain. Expected 'wp-leads-builder-any-crm' but got "wp-leads-builder-any-crm-pro".
ERRORI18nMissing Arg Domain22
- Category
- I18n
- Occurrences
- 22
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORSecurityDatabase parameter is not escaped18
- Category
- Security
- Occurrences
- 18
- Severity
- error
Sample message
Unescaped parameter $cal_value used in $wpdb->get_results()\n$cal_value assigned unsafely at line 462.
WARNINGMaintainabilityNon-prefixed function18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "caldera_forms_example".
WARNINGMaintainabilityMissing Version18
- Category
- Maintainability
- Occurrences
- 18
- 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.
WARNINGSecurityUnfinished Prepare15
- Category
- Security
- Occurrences
- 15
- Severity
- warning
Sample message
Replacement variables found, but no valid placeholders found in the query.
ERRORI18nNo Empty Strings14
- Category
- I18n
- Occurrences
- 14
- Severity
- error
Sample message
The $text text string should have translatable content. Found: ''
ERRORSecurityOutput is not escaped12
- Category
- Security
- Occurrences
- 12
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" {$module['module']} "'.
ERRORSecurityLike Wildcards In Query10
- Category
- Security
- Occurrences
- 10
- Severity
- error
Sample message
SQL wildcards for a LIKE query should be passed in through a replacement parameter. Found: like '%%'.
ERRORMaintainabilitydate date10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityrand rand10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
WARNINGMaintainabilityNot In Footer8
- Category
- Maintainability
- Occurrences
- 8
- 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 Change7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGMaintainabilityNon-prefixed hook name6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "sm_lb_docs_url".
External Connections
Potential connections found in static code analysis.
Outbound calls
159
External assets
4
Incoming endpoints
1
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
No public endpoints detected.
Admin AJAX endpoints1
wp_ajax
Score History
First score snapshot
v3.2.1
23
Latest
- Findings
- 1,909
- Errors
- 211
- Warnings
- 1,698
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 23 | 1,909 | 211 | 1,698 | v3.2.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.