Contact form with visual form builder. Contact form that sends the data to email, to a database list and to CSV / Excel files.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
793
10 issue groups
Maintainability
462
14 issue groups
I18n
21
1 issue group
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$angle".226
- Category
- Maintainability
- Occurrences
- 226
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$angle".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$_GET["edititem"]'.190
- Category
- Security
- Occurrences
- 190
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$_GET["edititem"]'.
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES[$item]. Check that the array index exists before using it.152
- Category
- Security
- Occurrences
- 152
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES[$item]. Check that the array index exists before using it.
WARNINGSecurityRequest data is not unslashed$_GET[$key] not unslashed before sanitization. Use wp_unslash() or similar150
- Category
- Security
- Occurrences
- 150
- Severity
- warning
Sample message
$_GET[$key] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.91
- Category
- Security
- Occurrences
- 91
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES[$item]85
- Category
- Security
- Occurrences
- 85
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES[$item]
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $cond69
- Category
- Security
- Occurrences
- 69
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $cond
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.47
- Category
- Maintainability
- Occurrences
- 47
- 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().42
- Category
- Maintainability
- Occurrences
- 42
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityNon-prefixed constantGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "CP_CFEMAIL_AUTH_INCLUDE".42
- Category
- Maintainability
- Occurrences
- 42
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "CP_CFEMAIL_AUTH_INCLUDE".
Show 15 moreShow less
ERRORSecurityUnsafe printing function26
- Category
- Security
- Occurrences
- 26
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORMaintainabilitywp function not compatible with requires wp23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- error
Sample message
Function "esc_textarea()" requires WordPress 3.1.0, but your plugin minimum supported version is WordPress 3.0.5.
ERRORI18nNon Singular String Literal Text21
- Category
- I18n
- Occurrences
- 21
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $button_label
ERRORMaintainabilityrand rand19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
WARNINGSecurityMissing nonce verification16
- Category
- Security
- Occurrences
- 16
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityMissing Version15
- Category
- Maintainability
- Occurrences
- 15
- 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.
ERRORMaintainabilitydate date11
- Category
- Maintainability
- Occurrences
- 11
- 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 Script10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
ERRORSecurityDatabase parameter is not escaped8
- Category
- Security
- Occurrences
- 8
- Severity
- error
Sample message
Unescaped parameter $cond used in $wpdb->get_results()\n$cond assigned unsafely at line 111.
WARNINGMaintainabilityNon-prefixed function8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "codepeople_add_promote_banner".
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.
WARNINGSecurityInterpolated SQL is not prepared6
- Category
- Security
- Occurrences
- 6
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable {$name} at "ALTER TABLE {$tab} CHANGE {$name} {$name} {$type} COLLATE `{$target_charset}`"
WARNINGMaintainabilitySchema Change4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGMaintainabilityNon-prefixed class4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CP_CFTEMAIL_BaseClass".
ERRORMaintainabilityparse url parse url4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
External Connections
Not analyzed yet.
Score History
First score snapshot
v1.3.67
25
Latest
- Findings
- 1,307
- Errors
- 409
- Warnings
- 898
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 1,307 | 409 | 898 | v1.3.67 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.