Export any WordPress website including WooCommerce data seamlessly with our powerful export plugin. Save records as CSV, XML, or Excel file for secure …
Category Scores
Top Issues by Category
maintainability813
security670
Issues Details
1,493 issues found in latest scan
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Use placeholders and $wpdb->prepare(); found interpolated variable $addresses_table at "SELECT * FROM $addresses_table WHERE customer_id = %d AND type = 'billing' AND is_primary = 1 LIMIT 1"
Unescaped parameter $attr_name used in $wpdb->get_results()\n$attr_name assigned unsafely at line 1065.
Use placeholders and $wpdb->prepare(); found $cross_selldata_query
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Unescaped parameter $addresses_table used in $wpdb->get_row()\n$addresses_table assigned unsafely at line 249.
$_POST['conditions'] not unslashed before sanitization. Use wp_unslash() or similar
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$customer_rev_class".
Plugin folders are deleted when upgraded. Do not save data to the plugin folder using file_put_contents(). Detected usage of __FILE__ or __DIR__ magic constant. Use wp_upload_dir() to get the uploads directory path or save to the database instead.
Processing form data without nonce verification.
error_log() found. Debug code should not normally be used in production.
Detected usage of a non-sanitized input variable: $_POST['filePath']
Detected usage of a possibly undefined superglobal array index: $_POST['conditions']. Check that the array index exists before using it.
Processing form data without nonce verification.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "install_csv_importer".
unlink() is discouraged. Use wp_delete_file() to delete a file.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EXPORTER_VERSION".
Mismatched text domain. Expected 'wp-ultimate-exporter' but got 'wp-ultimate-csv-importer'.
The plugin name includes a restricted term. Your chosen plugin name - "WP Ultimate Exporter" - contains the restricted term "wp" which cannot be used at all in your plugin name.
Possible use of short open tags detected; found: <? php//_e('Important note: Please upgrade...
Writing files using ABSPATH may be problematic. Consider using wp_upload_dir() instead if storing user data or generated files.
print_r() found. Debug code should not normally be used in production.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$dom'.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: chmod().
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 355 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 355 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $addresses_table at "SELECT * FROM $addresses_table WHERE customer_id = %d AND type = 'billing' AND is_primary = 1 LIMIT 1" | 284 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $attr_name used in $wpdb->get_results()\n$attr_name assigned unsafely at line 1065. | 249 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $cross_selldata_query | 47 |
| WordPress.DateTime.RestrictedFunctions.date_date | ERROR | date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead. | 44 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $addresses_table used in $wpdb->get_row()\n$addresses_table assigned unsafely at line 249. | 27 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_POST['conditions'] not unslashed before sanitization. Use wp_unslash() or similar | 27 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$customer_rev_class". | 22 |
| PluginCheck.CodeAnalysis.WriteFile.PluginDirectoryWrite | ERROR | Plugin folders are deleted when upgraded. Do not save data to the plugin folder using file_put_contents(). Detected usage of __FILE__ or __DIR__ magic constant. Use wp_upload_dir() to get the uploads directory path or save to the database instead. | 13 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 12 |
| WordPress.PHP.DevelopmentFunctions.error_log_error_log | WARNING | error_log() found. Debug code should not normally be used in production. | 9 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_POST['filePath'] | 9 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_POST['conditions']. Check that the array index exists before using it. | 9 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 5 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "install_csv_importer". | 4 |
| WordPress.WP.AlternativeFunctions.unlink_unlink | ERROR | unlink() is discouraged. Use wp_delete_file() to delete a file. | 3 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EXPORTER_VERSION". | 2 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'wp-ultimate-exporter' but got 'wp-ultimate-csv-importer'. | 2 |
| trademarked_term | WARNING | The plugin name includes a restricted term. Your chosen plugin name - "WP Ultimate Exporter" - contains the restricted term "wp" which cannot be used at all in your plugin name. | 2 |
| Generic.PHP.DisallowShortOpenTag.PossibleFound | WARNING | Possible use of short open tags detected; found: <? php//_e('Important note: Please upgrade... | 1 |
| PluginCheck.CodeAnalysis.WriteFile.ABSPATHDetected | WARNING | Writing files using ABSPATH may be problematic. Consider using wp_upload_dir() instead if storing user data or generated files. | 1 |
| WordPress.PHP.DevelopmentFunctions.error_log_print_r | WARNING | print_r() found. Debug code should not normally be used in production. | 1 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$dom'. | 1 |
| WordPress.WP.AlternativeFunctions.file_system_operations_chmod | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: chmod(). | 1 |
Latest Snapshot
Findings
1,493
Errors
363
Warnings
1,130
Score History
First score snapshot
First scan completed
v2.24.1 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
v2.24.1
24
Latest
- Findings
- 1,493
- Errors
- 363
- Warnings
- 1,130
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Latest | 24 | 1,493 | 363 | 1,130 | v2.24.1 | 2.0.0 | 2026.06-mvp-static-v2 |