Create WooCommerce pdf invoices, packing slips, certificates and more, customized them as you want them with the best drag-drop builder.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Maintainability
418
15 issue groups
Security
401
10 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$DefaultPrinterId".98
- Category
- Maintainability
- Occurrences
- 98
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$DefaultPrinterId".
ERRORSecurityException output is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$Lookup[$i]['Type']'.92
- Category
- Security
- Occurrences
- 92
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$Lookup[$i]['Type']'.
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $CUSTOM_FIELDS_TABLE90
- Category
- Security
- Occurrences
- 90
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $CUSTOM_FIELDS_TABLE
WARNINGMaintainabilityNon-prefixed classClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "HttpPostProcessor".52
- Category
- Maintainability
- Occurrences
- 52
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "HttpPostProcessor".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$Format'.47
- Category
- Security
- Occurrences
- 47
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$Format'.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.46
- Category
- Maintainability
- Occurrences
- 46
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityMissing VersionResource 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.44
- Category
- Maintainability
- Occurrences
- 44
- 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.
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().40
- Category
- Maintainability
- Occurrences
- 40
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['files']['tmp_name']38
- Category
- Security
- Occurrences
- 38
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['files']['tmp_name']
ERRORSecurityDatabase parameter is not escapedUnescaped parameter $query used in $wpdb->get_results()\n$query assigned unsafely at line 190.36
- Category
- Security
- Occurrences
- 36
- Severity
- error
Sample message
Unescaped parameter $query used in $wpdb->get_results()\n$query assigned unsafely at line 190.
Show 15 moreShow less
WARNINGSecurityRequest data is not unslashed36
- Category
- Security
- Occurrences
- 36
- Severity
- warning
Sample message
$_GET['_wpnonce'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityNonce verification recommended25
- Category
- Security
- Occurrences
- 25
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNot In Footer23
- Category
- Maintainability
- Occurrences
- 23
- 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.
WARNINGMaintainabilityNon-prefixed hook name22
- Category
- Maintainability
- Occurrences
- 22
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "rednao_wcpdfinvoice_should_process".
WARNINGSecurityInput is not validated20
- Category
- Security
- Occurrences
- 20
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['files']['tmp_name']. Check that the array index exists before using it.
ERRORMaintainabilityMissing direct file access protection19
- Category
- Maintainability
- Occurrences
- 19
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityerror log var export18
- Category
- Maintainability
- Occurrences
- 18
- Severity
- warning
Sample message
var_export() found. Debug code should not normally be used in production.
ERRORMaintainabilityfile system operations fread14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread().
ERRORMaintainabilitywp function not compatible with requires wp13
- Category
- Maintainability
- Occurrences
- 13
- Severity
- error
Sample message
Function "switch_to_locale()" requires WordPress 4.7.0, but your plugin minimum supported version is WordPress 3.3.0.
WARNINGSecurityMissing nonce verification12
- Category
- Security
- Occurrences
- 12
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityfile system operations mkdir10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir().
ERRORMaintainabilityfile system operations fopen7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
ERRORMaintainabilitydate date6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORMaintainabilityfile system operations fclose6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
WARNINGSecurityPlugin menu slug uses __FILE__5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
Using __FILE__ for menu slugs risks exposing filesystem structure.
External Connections
Not analyzed yet.
Score History
First score snapshot
v2.0.10
25
Latest
- Findings
- 875
- Errors
- 372
- Warnings
- 503
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 25 | 875 | 372 | 503 | v2.0.10 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.