Autopay is a payment module that enables cashless transactions in a shop based on the WordPress platform (WooCommerce).
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
I18n
510
6 issue groups
Security
388
9 issue groups
Maintainability
213
10 issue groups
ERRORI18nText Domain MismatchMismatched text domain. Expected 'platnosci-online-blue-media' but got "bm-woocommerce".385
- Category
- I18n
- Occurrences
- 385
- Severity
- error
Sample message
Mismatched text domain. Expected 'platnosci-online-blue-media' but got "bm-woocommerce".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<textarea name=\"$id\" id=\"$id\" style=\"width:100%; height:500px;\">"'.172
- Category
- Security
- Occurrences
- 172
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<textarea name=\"$id\" id=\"$id\" style=\"width:100%; height:500px;\">"'.
WARNINGMaintainabilityerror log print rprint_r() found. Debug code should not normally be used in production.104
- Category
- Maintainability
- Occurrences
- 104
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$active_currency_tab_id".84
- Category
- Maintainability
- Occurrences
- 84
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$active_currency_tab_id".
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.61
- Category
- Security
- Occurrences
- 61
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORI18nMissing Arg DomainMissing $domain parameter in function call to esc_attr_e().49
- Category
- I18n
- Occurrences
- 49
- Severity
- error
Sample message
Missing $domain parameter in function call to esc_attr_e().
ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: $environment49
- Category
- I18n
- Occurrences
- 49
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $environment
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.35
- Category
- Security
- Occurrences
- 35
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.34
- Category
- Security
- Occurrences
- 34
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGSecurityRequest data is not unslashed$_COOKIE['_ga'] not unslashed before sanitization. Use wp_unslash() or similar29
- Category
- Security
- Occurrences
- 29
- Severity
- warning
Sample message
$_COOKIE['_ga'] not unslashed before sanitization. Use wp_unslash() or similar
Show 15 moreShow less
WARNINGSecurityInput is not sanitized21
- Category
- Security
- Occurrences
- 21
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE['_ga']
ERRORSecurityException output is not escaped20
- Category
- Security
- Occurrences
- 20
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"The {$key} cannot be found in the given array."'.
WARNINGSecurityInput is not validated14
- Category
- Security
- Occurrences
- 14
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_POST[$this->get_editor_content_option_id()]. Check that the array index exists before using it.
ERRORI18nMissing Translators Comment13
- Category
- I18n
- Occurrences
- 13
- 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.
ERRORI18nNo Empty Strings11
- Category
- I18n
- Occurrences
- 11
- Severity
- error
Sample message
The $text text string should have translatable content. Found: ''
ERRORMaintainabilityMissing direct file access protection8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityMissing Version6
- Category
- Maintainability
- Occurrences
- 6
- 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.
ERRORMaintainabilityrand rand5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
WARNINGI18nDiscouraged text-domain loading3
- Category
- I18n
- Occurrences
- 3
- Severity
- warning
Sample message
load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed.
WARNINGMaintainabilityprevent path disclosure error reporting2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
error_reporting() can lead to full path disclosure.
WARNINGSecuritywp redirect wp redirect2
- Category
- Security
- Occurrences
- 2
- Severity
- warning
Sample message
wp_redirect() found. Using wp_safe_redirect(), along with the "allowed_redirect_hosts" filter if needed, can help avoid any chances of malicious redirects within code. It is also important to remember to call exit() after a redirect so that no other unwanted code is executed.
WARNINGMaintainabilityDiscouraged PHP function1
- Category
- Maintainability
- Occurrences
- 1
- Severity
- warning
Sample message
The use of function ini_set() is discouraged
WARNINGMaintainabilityDirect Query1
- Category
- Maintainability
- Occurrences
- 1
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo Caching1
- Category
- Maintainability
- Occurrences
- 1
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGMaintainabilityDynamic hook name1
- Category
- Maintainability
- Occurrences
- 1
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "sprintf( "bm_order_bm_int_status_%s_processed",\n self::ITN_SUCCESS_STATUS_ID )".
External Connections
Potential connections found in static code analysis.
Outbound calls
260
External assets
8
Incoming endpoints
2
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
Admin AJAX endpoints1
wp_ajax
Score History
2 score snapshots
v4.9.2
28
Latest
- Findings
- 1,124
- Errors
- 754
- Warnings
- 370
- Check
- 2.0.0
v4.9.1
27
Score
- Findings
- 1,116
- Errors
- 746
- Warnings
- 370
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 28 | 1,124 | 754 | 370 | v4.9.2 | 2.0.0 |
| 27 | 1,116 | 746 | 370 | v4.9.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.