Install this plugin on unlimited sites and manage them all from a central dashboard. This plugin communicates with your InfiniteWP Admin Panel.
Category Scores
Top Issues by Category
maintainability2,181
security974
Issues Details
4,098 issues found in latest scan
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"($name) missing required param: '$paramName'"'.
Mismatched text domain. Expected 'iwp-client' but got ' InfiniteWP'.
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "Aws\Common".
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "IWPPclZipUtilCopyBlock".
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AmazonS3".
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$data is not a valid file"'.
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "APP_GCAL_DISABLE".
Use placeholders and $wpdb->prepare(); found $broken_sql
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
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.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
Unescaped parameter $broken_sql used in $wpdb->get_results()\n$broken_sql assigned unsafely at line 115.
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread().
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$IWP_BACKUP_RESTORE_INIT_TIME".
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'IWP_'.$filter".
Unescaped parameter $row['Name'] used in $wpdb->get_results()
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
Detected usage of a non-sanitized input variable: $_ENV['HOME']
$_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar
Use placeholders and $wpdb->prepare(); found interpolated variable $semaphore at \t\t\t\t('IWP_last_lock_time_$semaphore', '%s', 'no'),\r\n
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.Security.EscapeOutput.ExceptionNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"($name) missing required param: '$paramName'"'. | 304 |
| WordPress.WP.I18n.TextDomainMismatch | ERROR | Mismatched text domain. Expected 'iwp-client' but got ' InfiniteWP'. | 268 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound | WARNING | Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "Aws\Common". | 231 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 226 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 216 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "IWPPclZipUtilCopyBlock". | 214 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedClassFound | WARNING | Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "AmazonS3". | 210 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$data is not a valid file"'. | 198 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedConstantFound | WARNING | Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "APP_GCAL_DISABLE". | 196 |
| WordPress.DB.PreparedSQL.NotPrepared | ERROR | Use placeholders and $wpdb->prepare(); found $broken_sql | 181 |
| WordPress.WP.AlternativeFunctions.curl_curl_setopt | ERROR | Using cURL functions is highly discouraged. Use wp_remote_get() instead. | 171 |
| WordPress.WP.I18n.MissingTranslatorsComment | ERROR | 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. | 131 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fclose | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose(). | 114 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fopen | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen(). | 107 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | ERROR | Unescaped parameter $broken_sql used in $wpdb->get_results()\n$broken_sql assigned unsafely at line 115. | 104 |
| missing_direct_file_access_protection | ERROR | PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit; | 102 |
| 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. | 92 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fread | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread(). | 91 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$IWP_BACKUP_RESTORE_INIT_TIME". | 83 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "'IWP_'.$filter". | 73 |
| PluginCheck.Security.DirectDB.UnescapedDBParameter | WARNING | Unescaped parameter $row['Name'] used in $wpdb->get_results() | 63 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fwrite | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite(). | 55 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_ENV['HOME'] | 45 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['action'] not unslashed before sanitization. Use wp_unslash() or similar | 41 |
| WordPress.DB.PreparedSQL.InterpolatedNotPrepared | WARNING | Use placeholders and $wpdb->prepare(); found interpolated variable $semaphore at \t\t\t\t('IWP_last_lock_time_$semaphore', '%s', 'no'),\r\n | 38 |
Latest Snapshot
Findings
4,098
Errors
2,286
Warnings
1,812
Score History
First score snapshot
First scan completed Jun 19, 2026
v1.13.5 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
Jun 19, 2026
v1.13.5
22
Latest
- Findings
- 4,098
- Errors
- 2,286
- Warnings
- 1,812
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Jun 19, 2026Latest | 22 | 4,098 | 2,286 | 1,812 | v1.13.5 | 2.0.0 | 2026.06-mvp-static-v2 |