Theme Editor allows you to edit theme files, create folder, upload files and remove any file and folder in themes and plugins.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
938
9 issue groups
Maintainability
312
14 issue groups
I18n
190
2 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$a_theme'.283
- Category
- Security
- Occurrences
- 283
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$a_theme'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.232
- Category
- Security
- Occurrences
- 232
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$a_plugin".200
- Category
- Maintainability
- Occurrences
- 200
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$a_plugin".
ERRORI18nText Domain MismatchMismatched text domain. Expected 'theme-editor' but got 'te-editor'.176
- Category
- I18n
- Occurrences
- 176
- Severity
- error
Sample message
Mismatched text domain. Expected 'theme-editor' but got 'te-editor'.
WARNINGSecurityRequest data is not unslashed$_GET['error'] not unslashed before sanitization. Use wp_unslash() or similar127
- Category
- Security
- Occurrences
- 127
- Severity
- warning
Sample message
$_GET['error'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_FILES['ms_theme_screenshot']['name']. Check that the array index exists before using it.111
- Category
- Security
- Occurrences
- 111
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['ms_theme_screenshot']['name']. Check that the array index exists before using it.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['ms_theme_screenshot']['name']71
- Category
- Security
- Occurrences
- 71
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_FILES['ms_theme_screenshot']['name']
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.70
- Category
- Security
- Occurrences
- 70
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.34
- Category
- Security
- Occurrences
- 34
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "mk_theme_editor_child_file_delete".22
- Category
- Maintainability
- Occurrences
- 22
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "mk_theme_editor_child_file_delete".
Show 15 moreShow less
ERRORMaintainabilityfile system operations is writable16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: is_writable().
ERRORI18nMissing Translators Comment14
- Category
- I18n
- Occurrences
- 14
- 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.
ERRORMaintainabilityNon Enqueued Script12
- Category
- Maintainability
- Occurrences
- 12
- Severity
- error
Sample message
Scripts must be registered/enqueued via wp_enqueue_script()
WARNINGMaintainabilityNon-prefixed constant11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- warning
Sample message
Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "LF".
WARNINGMaintainabilityNon-prefixed class8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "InsufficientDataException".
ERRORMaintainabilityfile system operations fopen8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
WARNINGSecuritywp redirect wp redirect6
- Category
- Security
- Occurrences
- 6
- 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.
ERRORMaintainabilityfile system operations mkdir6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir().
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.
WARNINGMaintainabilityNon-prefixed hook name5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "https_local_ssl_verify".
WARNINGMaintainabilityNon-prefixed namespace5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "te\app\cnt".
ERRORMaintainabilityNon Enqueued Stylesheet5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
Stylesheets must be registered/enqueued via wp_enqueue_style()
WARNINGMaintainabilityerror log print r4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- warning
Sample message
print_r() found. Debug code should not normally be used in production.
ERRORSecurityException output is not escaped4
- Category
- Security
- Occurrences
- 4
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$c'.
ERRORMaintainabilitycurl curl setopt4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
Using cURL functions is highly discouraged. Use wp_remote_get() instead.
External Connections
Not analyzed yet.
Score History
First score snapshot
v3.2
22
Latest
- Findings
- 1,483
- Errors
- 798
- Warnings
- 685
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 1,483 | 798 | 685 | v3.2 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.