Boost audience engagement & lead generation with AcyMailing, an all-in-one newsletter automation tool for your marketing success.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
4,283
7 issue groups
Maintainability
1,875
17 issue groups
I18n
378
1 issue group
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"C: $data\n"'.4,054
- Category
- Security
- Occurrences
- 4,054
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"C: $data\n"'.
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_PEAR_SHUTDOWN_REGISTERED".1,067
- Category
- Maintainability
- Occurrences
- 1,067
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$_PEAR_SHUTDOWN_REGISTERED".
ERRORI18nMissing Translators CommentA 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.378
- Category
- I18n
- Occurrences
- 378
- 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.
ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;338
- Category
- Maintainability
- Occurrences
- 338
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
ERRORSecurityException Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" {$parserState->peek()} "'.126
- Category
- Security
- Occurrences
- 126
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" {$parserState->peek()} "'.
WARNINGMaintainabilityNon Prefixed Constant FoundGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "CL_EXPUNGE".73
- Category
- Maintainability
- Occurrences
- 73
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "CL_EXPUNGE".
ERRORMaintainabilitydate datedate() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.72
- Category
- Maintainability
- Occurrences
- 72
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilitystrip tags strip tagsstrip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.60
- Category
- Maintainability
- Occurrences
- 60
- Severity
- error
Sample message
strip_tags() is discouraged. Use the more comprehensive wp_strip_all_tags() instead.
WARNINGMaintainabilityNon Prefixed Class FoundClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "JFormFieldArchive".44
- Category
- Maintainability
- Occurrences
- 44
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "JFormFieldArchive".
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_FILES['customField']['name'][$key]40
- Category
- Security
- Occurrences
- 40
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['customField']['name'][$key]
Show 15 moreShow less
WARNINGMaintainabilityerror log debug backtrace34
- Category
- Maintainability
- Occurrences
- 34
- Severity
- warning
Sample message
debug_backtrace() found. Debug code should not normally be used in production.
ERRORMaintainabilityrand rand32
- Category
- Maintainability
- Occurrences
- 32
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
WARNINGMaintainabilityNon Prefixed Trait Found29
- Category
- Maintainability
- Occurrences
- 29
- Severity
- warning
Sample message
Traits declared by a theme/plugin should start with the theme/plugin prefix. Found: "BirthdayAutomationTriggers".
WARNINGMaintainabilityerror log trigger error22
- Category
- Maintainability
- Occurrences
- 22
- Severity
- warning
Sample message
trigger_error() found. Debug code should not normally be used in production.
WARNINGMaintainabilityDiscouraged21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- warning
Sample message
The use of function dl() is discouraged
WARNINGSecurityMissing Unslash19
- Category
- Security
- Occurrences
- 19
- Severity
- warning
Sample message
$_GET['code'] not unslashed before sanitization. Use wp_unslash() or similar
ERRORMaintainabilityunlink unlink18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
WARNINGSecurityRecommended17
- Category
- Security
- Occurrences
- 17
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityfile system operations fwrite15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
WARNINGSecurityInput Not Validated14
- Category
- Security
- Occurrences
- 14
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['customField']['name'][$key]. Check that the array index exists before using it.
WARNINGMaintainabilityMissing Version14
- Category
- Maintainability
- Occurrences
- 14
- 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.
WARNINGSecurityMissing13
- Category
- Security
- Occurrences
- 13
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitycurl curl setopt13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
ERRORMaintainabilityfile system operations fread13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread().
ERRORMaintainabilityfile system operations fclose10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
Score History
First score snapshot
v10.10.2
24
Latest
- Findings
- 6,694
- Errors
- 5,230
- Warnings
- 1,464
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 24 | 6,694 | 5,230 | 1,464 | v10.10.2 | 2.0.0 |