A lightweight, fast and powerful virus scanner for WordPress.
Category Scores
Top Issues by Category
maintainability459
security445
Issues Details
1,147 issues found in latest scan
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$absfiles".
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.
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"'$nscan_key'"'.
Processing form data without nonce verification.
Detected usage of a non-sanitized input variable: $_GET['file']
$_GET['file'] not unslashed before sanitization. Use wp_unslash() or similar
unlink() is discouraged. Use wp_delete_file() to delete a file.
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_nscan_build_files_list".
The $text parameter must be a single text string literal. Found: "This report was created for WordPress %s, but your current version is %s. ".\n "If you upgraded WordPress lately, don't forget to run a new scan."
Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Fatal error: Some NinjaScanner files have been modified (%s) or are missing (%s). Please reinstall NinjaScanner or disable NinjaScanner files integrity checker. Aborting.'.
Processing form data without nonce verification.
Detected usage of a possibly undefined superglobal array index: $_POST['file']. Check that the array index exists before using it.
Plugin folders are deleted when upgraded. Do not save data to the plugin folder using file_put_contents(). Detected usage of constant WP_CONTENT_DIR. Use wp_upload_dir() to get the uploads directory path or save to the database instead.
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: touch().
rename() is discouraged. Use WP_Filesystem::move() to rename a file.
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "cron_request".
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir().
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
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().
| Code | Type | Message | Count |
|---|---|---|---|
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound | WARNING | Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$absfiles". | 328 |
| 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. | 183 |
| WordPress.Security.EscapeOutput.UnsafePrintingFunction | ERROR | All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'. | 150 |
| WordPress.Security.EscapeOutput.OutputNotEscaped | ERROR | All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"'$nscan_key'"'. | 111 |
| WordPress.Security.NonceVerification.Missing | WARNING | Processing form data without nonce verification. | 74 |
| WordPress.Security.ValidatedSanitizedInput.InputNotSanitized | WARNING | Detected usage of a non-sanitized input variable: $_GET['file'] | 40 |
| WordPress.Security.ValidatedSanitizedInput.MissingUnslash | WARNING | $_GET['file'] not unslashed before sanitization. Use wp_unslash() or similar | 40 |
| WordPress.WP.AlternativeFunctions.unlink_unlink | ERROR | unlink() is discouraged. Use wp_delete_file() to delete a file. | 25 |
| 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. | 24 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound | WARNING | Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_nscan_build_files_list". | 19 |
| WordPress.WP.I18n.NonSingularStringLiteralText | ERROR | The $text parameter must be a single text string literal. Found: "This report was created for WordPress %s, but your current version is %s. ".\n "If you upgraded WordPress lately, don't forget to run a new scan." | 19 |
| WordPress.WP.I18n.UnorderedPlaceholdersText | ERROR | Multiple placeholders in translatable strings should be ordered. Expected "%1$s, %2$s", but got "%s, %s" in 'Fatal error: Some NinjaScanner files have been modified (%s) or are missing (%s). Please reinstall NinjaScanner or disable NinjaScanner files integrity checker. Aborting.'. | 18 |
| Generic.PHP.DiscourageGoto.Found | ERROR | The "goto" language construct should not be used. | 17 |
| WordPress.Security.NonceVerification.Recommended | WARNING | Processing form data without nonce verification. | 16 |
| WordPress.Security.ValidatedSanitizedInput.InputNotValidated | WARNING | Detected usage of a possibly undefined superglobal array index: $_POST['file']. Check that the array index exists before using it. | 14 |
| 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 constant WP_CONTENT_DIR. Use wp_upload_dir() to get the uploads directory path or save to the database instead. | 8 |
| WordPress.WP.AlternativeFunctions.file_system_operations_touch | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: touch(). | 7 |
| WordPress.WP.AlternativeFunctions.rename_rename | ERROR | rename() is discouraged. Use WP_Filesystem::move() to rename a file. | 6 |
| WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound | WARNING | Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "cron_request". | 5 |
| WordPress.WP.AlternativeFunctions.file_system_operations_mkdir | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir(). | 5 |
| Squiz.PHP.DiscouragedFunctions.Discouraged | WARNING | The use of function ini_set() is discouraged | 3 |
| WordPress.DB.DirectDatabaseQuery.DirectQuery | WARNING | Use of a direct database call is discouraged. | 3 |
| WordPress.DB.DirectDatabaseQuery.NoCaching | WARNING | Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete(). | 3 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fclose | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose(). | 3 |
| WordPress.WP.AlternativeFunctions.file_system_operations_fopen | ERROR | File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen(). | 3 |
Latest Snapshot
Findings
1,147
Errors
596
Warnings
551
Score History
First score snapshot
First scan completed
v3.3.1 · Plugin Check 2.0.0 · Model 2026.06-mvp-static-v2
v3.3.1
22
Latest
- Findings
- 1,147
- Errors
- 596
- Warnings
- 551
- Plugin Check
- 2.0.0
- Model
- 2026.06-mvp-static-v2
| Scan | Score | Findings | Errors | Warnings | Plugin | Plugin Check | Model |
|---|---|---|---|---|---|---|---|
| Latest | 22 | 1,147 | 596 | 551 | v3.3.1 | 2.0.0 | 2026.06-mvp-static-v2 |