EazyDocs – AI Powered Knowledge Base, Wiki, Documentation & FAQ Builder

Build professional knowledge bases with unlimited docs, drag-and-drop editor, live search, and SEO optimization.

v2.11.3Spider ThemesUpdated Added 2k+ installs94% rating0% support resolved
24
Score
349
Errors
1,460
Warnings
+0
Change

Category Scores

Security0
Repo100
Performance85
Maintainability0

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

1,809 findings

Maintainability

1,326

13 issue groups

Security

427

9 issue groups

Performance

24

2 issue groups

I18n

10

1 issue group

WARNINGMaintainabilityNon Prefixed Variable FoundGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Disliked".857
Category
Maintainability
Occurrences
857
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$Disliked".

ERRORSecurityOutput Not EscapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$alt_attr'.272
Category
Security
Occurrences
272
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$alt_attr'.

WARNINGMaintainabilityNon Prefixed Function FoundFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "csf_array_search".134
Category
Maintainability
Occurrences
134
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "csf_array_search".

WARNINGMaintainabilityNon Prefixed Hookname FoundHook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "before_docs_column_wrapper".125
Category
Maintainability
Occurrences
125
Severity
warning

Sample message

Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "before_docs_column_wrapper".

WARNINGMaintainabilityNon Prefixed Class FoundClasses declared by a theme/plugin should start with the theme/plugin prefix. Found: "CSF".66
Category
Maintainability
Occurrences
66
Severity
warning

Sample message

Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "CSF".

WARNINGSecurityMissing Unslash$_GET['add_new_doc'] not unslashed before sanitization. Use wp_unslash() or similar47
Category
Security
Occurrences
47
Severity
warning

Sample message

$_GET['add_new_doc'] not unslashed before sanitization. Use wp_unslash() or similar

ERRORMaintainabilitymissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;42
Category
Maintainability
Occurrences
42
Severity
error

Sample message

PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.33
Category
Maintainability
Occurrences
33
Severity
warning

Sample message

Use of a direct database call is discouraged.

WARNINGSecurityInput Not SanitizedDetected usage of a non-sanitized input variable: $_COOKIE['eazydocs_response']32
Category
Security
Occurrences
32
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_COOKIE['eazydocs_response']

WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().31
Category
Maintainability
Occurrences
31
Severity
warning

Sample message

Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().

Show 15 more
WARNINGSecurityRecommended29
Category
Security
Occurrences
29
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGPerformancePost Not In exclude19
Category
Performance
Occurrences
19
Severity
warning

Sample message

Using exclusionary parameters, like exclude, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.

WARNINGSecurityInterpolated Not Prepared14
Category
Security
Occurrences
14
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable $eazydocs_view_table at "SELECT `count`, `created_at` FROM $eazydocs_view_table"

WARNINGSecurityMissing14
Category
Security
Occurrences
14
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGMaintainabilityNon Prefixed Constant Found10
Category
Maintainability
Occurrences
10
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: "EZD_ASSETS".

ERRORI18nMissing Translators Comment10
Category
I18n
Occurrences
10
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.

WARNINGSecurityInput Not Validated8
Category
Security
Occurrences
8
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_GET['new_doc']. Check that the array index exists before using it.

WARNINGMaintainabilityFound7
Category
Maintainability
Occurrences
7
Severity
warning

Sample message

Short URL detected (shorturl.at). Use full URLs instead of URL shorteners.

ERRORMaintainabilitywp function not compatible with requires wp7
Category
Maintainability
Occurrences
7
Severity
error

Sample message

Function "block_template_part()" requires WordPress 5.9.0, but your plugin minimum supported version is WordPress 5.0.0.

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.

ERRORMaintainabilityOffloaded Content5
Category
Maintainability
Occurrences
5
Severity
error

Sample message

Found call to wp_enqueue_script() with external resource. Offloading scripts to your servers or any remote service is disallowed.

ERRORMaintainabilityOffloaded Content5
Category
Maintainability
Occurrences
5
Severity
error

Sample message

Offloading images, js, css, and other scripts to your servers or any remote service is disallowed.

WARNINGSecurityUnescaped DBParameter5
Category
Security
Occurrences
5
Severity
warning

Sample message

Unescaped parameter $eazydocs_view_table used in $wpdb->get_results()\n$eazydocs_view_table assigned unsafely at line 78.

WARNINGPerformancePost Not In post not in5
Category
Performance
Occurrences
5
Severity
warning

Sample message

Using exclusionary parameters, like post__not_in, in calls to get_posts() should be done with caution, see https://wpvip.com/documentation/performance-improvements-by-removing-usage-of-post__not_in/ for more information.

WARNINGMaintainabilityslow db query tax query4
Category
Maintainability
Occurrences
4
Severity
warning

Sample message

Detected usage of tax_query, possible slow query.

Score History

First score snapshot

v2.11.3

24

Latest

Findings
1,809
Errors
349
Warnings
1,460
Check
2.0.0

Related Plugins

FAQ Block For Gutenberg

4k+ active installs

98
Toggles

2k+ active installs

98
FAQly – Ultimate FAQ

1k+ active installs

96