Quick and Easy way to search all URLS, Content and replace them with new links and content in WordPress website.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
1,651
15 issue groups
Security
892
9 issue groups
I18n
228
1 issue group
WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".1,116
- Category
- Maintainability
- Occurrences
- 1,116
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_addon_ids".
ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.615
- Category
- Security
- Occurrences
- 615
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" <a href='{$skip_url}' class='button button-small button-secondary'>{$use_plugin_anonymously_text}</a>"'.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'update-urls' but got 'action-scheduler'.228
- Category
- I18n
- Occurrences
- 228
- Severity
- error
Sample message
Mismatched text domain. Expected 'update-urls' but got 'action-scheduler'.
WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "UU".124
- Category
- Maintainability
- Occurrences
- 124
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "UU".
WARNINGMaintainabilityNon Prefixed Constant FoundGlobal constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".104
- Category
- Maintainability
- Occurrences
- 104
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "FS_API__ADDRESS".
ERRORSecurityException Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"The bulk action $action does not have a callback method"'.90
- Category
- Security
- Occurrences
- 90
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"The bulk action $action does not have a callback method"'.
WARNINGMaintainabilityNon Prefixed Class FoundClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "CronExpression".65
- Category
- Maintainability
- Occurrences
- 65
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CronExpression".
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.63
- Category
- Maintainability
- Occurrences
- 63
- 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().54
- Category
- Maintainability
- Occurrences
- 54
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_GET[$key]52
- Category
- Security
- Occurrences
- 52
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET[$key]
Show 15 moreShow less
WARNINGSecurityMissing Unslash51
- Category
- Security
- Occurrences
- 51
- Severity
- warning
Sample message
$_GET[$key] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityRecommended29
- Category
- Security
- Occurrences
- 29
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput Not Validated28
- Category
- Security
- Occurrences
- 28
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST['message_id']. Check that the array index exists before using it.
ERRORMaintainabilitydate date24
- Category
- Maintainability
- Occurrences
- 24
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityNon Prefixed Hookname Found24
- Category
- Maintainability
- Occurrences
- 24
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "admin_memory_limit".
WARNINGMaintainabilityerror log var export19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- warning
Sample message
var_export() found. Debug code should not normally be used in production.
ERRORMaintainabilityNot Allowed16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- error
Sample message
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
WARNINGSecurityUnescaped DBParameter16
- Category
- Security
- Occurrences
- 16
- Severity
- warning
Sample message
Unescaped parameter $column_name used in $wpdb->get_var()
ERRORMaintainabilitymissing direct file access protection15
- Category
- Maintainability
- Occurrences
- 15
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityDynamic Hookname Found9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$hook".
WARNINGMaintainabilityDiscouraged7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
ERRORSecurityNot Prepared6
- Category
- Security
- Occurrences
- 6
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $option
ERRORMaintainabilityrand rand6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
WARNINGSecurityInterpolated Not Prepared5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $table at "DROP TABLE IF EXISTS $table;"
WARNINGMaintainabilityerror log debug backtrace5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
debug_backtrace() found. Debug code should not normally be used in production.
Score History
First score snapshot
v1.4.6
22
Latest
- Findings
- 2,841
- Errors
- 1,044
- Warnings
- 1,797
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 2,841 | 1,044 | 1,797 | v1.4.6 | 2.0.0 |