Newsletter Subscription Form for WordPress is the ultimate lead generation, customer acquisition and email marketing plugin to grow and engage your ma …
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
596
14 issue groups
I18n
323
2 issue groups
Security
269
9 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$List".443
- Category
- Maintainability
- Occurrences
- 443
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$List".
ERRORI18nText Domain MismatchMismatched text domain. Expected 'newsletter-subscription-form' but got "NLS_TEXT_DOMAIN".318
- Category
- I18n
- Occurrences
- 318
- Severity
- error
Sample message
Mismatched text domain. Expected 'newsletter-subscription-form' but got "NLS_TEXT_DOMAIN".
WARNINGSecurityRequest data is not unslashed$_GET['act_code'] not unslashed before sanitization. Use wp_unslash() or similar78
- Category
- Security
- Occurrences
- 78
- Severity
- warning
Sample message
$_GET['act_code'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET['email']. Check that the array index exists before using it.52
- Category
- Security
- Occurrences
- 52
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['email']. Check that the array index exists before using it.
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $act_code at "SELECT * FROM `$table_name` WHERE `email` LIKE '$email' AND `act_code` LIKE '$act_code'"39
- Category
- Security
- Occurrences
- 39
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $act_code at "SELECT * FROM `$table_name` WHERE `email` LIKE '$email' AND `act_code` LIKE '$act_code'"
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.38
- Category
- Maintainability
- Occurrences
- 38
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET['act_code']38
- Category
- Security
- Occurrences
- 38
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['act_code']
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().28
- Category
- Maintainability
- Occurrences
- 28
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityDatabase parameter is not escapedUnescaped parameter $table_name used in $wpdb->get_results()26
- Category
- Security
- Occurrences
- 26
- Severity
- warning
Sample message
Unescaped parameter $table_name used in $wpdb->get_results()
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "NLS_Language_Translater".23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "NLS_Language_Translater".
Show 15 moreShow less
WARNINGMaintainabilityMissing Version17
- Category
- Maintainability
- Occurrences
- 17
- 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.
WARNINGSecurityNonce verification recommended16
- Category
- Security
- Occurrences
- 16
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitycurl curl setopt16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORSecurityOutput is not escaped13
- Category
- Security
- Occurrences
- 13
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"Bad group name: $alias."'.
WARNINGMaintainabilityNot In Footer9
- Category
- Maintainability
- Occurrences
- 9
- 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.
ERRORMaintainabilityMissing direct file access protection7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORI18nNo Empty Strings5
- Category
- I18n
- Occurrences
- 5
- Severity
- error
Sample message
The $text text string should have translatable content. Found: ' '
ERRORSecuritySQL query is not prepared4
- Category
- Security
- Occurrences
- 4
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $table_name
WARNINGMaintainabilityNon-prefixed class3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "MCAPI".
WARNINGMaintainabilityNon-prefixed constant3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "NLS_PLUGIN_NAME".
WARNINGSecurityMissing nonce verification3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityrand rand3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
WARNINGMaintainabilityDiscouraged PHP function2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
WARNINGMaintainabilitySchema Change2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
ERRORMaintainabilitydate date2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
External Connections
Potential connections found in static code analysis.
Outbound calls
111
External assets
0
Incoming endpoints
0
Notable Domains
Platform / Reference Domains
External Asset Domains
No external asset domains detected.
Incoming Endpoints
No public endpoints detected.
Score History
First score snapshot
v1.5.8
24
Latest
- Findings
- 1,214
- Errors
- 385
- Warnings
- 829
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 1,214 | 385 | 829 | v1.5.8 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.