WP-WebAuthn enables passwordless login through FIDO2 and U2F devices like Passkey, FaceID or Windows Hello for your site.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
687
3 issue groups
Maintainability
543
21 issue groups
I18n
8
1 issue group
ERRORSecurityException output is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" is too short ({$contentLength} octets)"'.650
- Category
- Security
- Occurrences
- 650
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '" is too short ({$contentLength} octets)"'.
ERRORMaintainabilityMissing direct file access protectionPHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;110
- Category
- Maintainability
- Occurrences
- 110
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityNon-prefixed namespaceNamespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "FG\ASN1".82
- Category
- Maintainability
- Occurrences
- 82
- Severity
- warning
Sample message
Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "FG\ASN1".
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$__composer_autoload_files".78
- Category
- Maintainability
- Occurrences
- 78
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$__composer_autoload_files".
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "wwa_add_log".69
- Category
- Maintainability
- Occurrences
- 69
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "wwa_add_log".
WARNINGMaintainabilityerror log trigger errortrigger_error() found. Debug code should not normally be used in production.33
- Category
- Maintainability
- Occurrences
- 33
- Severity
- warning
Sample message
trigger_error() found. Debug code should not normally be used in production.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().22
- Category
- Maintainability
- Occurrences
- 22
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.22
- Category
- Security
- Occurrences
- 22
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilitywp function not compatible with requires wpFunction "array_is_list()" requires WordPress 6.5.0, but your plugin minimum supported version is WordPress 5.0.0.21
- Category
- Maintainability
- Occurrences
- 21
- Severity
- error
Sample message
Function "array_is_list()" requires WordPress 6.5.0, but your plugin minimum supported version is WordPress 5.0.0.
Show 15 moreShow less
ERRORMaintainabilityfile system operations fopen20
- Category
- Maintainability
- Occurrences
- 20
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fopen().
WARNINGSecurityMissing nonce verification15
- Category
- Security
- Occurrences
- 15
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityfile system operations fclose14
- Category
- Maintainability
- Occurrences
- 14
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fclose().
ERRORMaintainabilityfile system operations fwrite11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fwrite().
ERRORMaintainabilityForbidden PHP function found10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- error
Sample message
The use of function create_function() is forbidden
WARNINGMaintainabilityerror log var export9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- warning
Sample message
var_export() found. Debug code should not normally be used in production.
ERRORI18nMissing Arg Domain8
- Category
- I18n
- Occurrences
- 8
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORMaintainabilitymysql mysql connect6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
Accessing the database directly should be avoided. Please use the $wpdb object and associated functions instead. Found: mysql_connect.
ERRORMaintainabilityfile system operations fread6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: fread().
ERRORMaintainabilityunlink unlink6
- Category
- Maintainability
- Occurrences
- 6
- Severity
- error
Sample message
unlink() is discouraged. Use wp_delete_file() to delete a file.
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: "login_link_separator".
WARNINGMaintainabilityerror log set error handler5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- warning
Sample message
set_error_handler() found. Debug code should not normally be used in production.
ERRORMaintainabilityrename rename5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
rename() is discouraged. Use WP_Filesystem::move() to rename a file.
ERRORMaintainabilityfile system operations mkdir4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
File operations should use WP_Filesystem methods instead of direct PHP filesystem calls. Found: mkdir().
ERRORMaintainabilityparse url parse url4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
parse_url() is discouraged because of inconsistency in the output across PHP versions; use wp_parse_url() instead.
External Connections
Not analyzed yet.
Score History
First score snapshot
v1.4.1
22
Latest
- Findings
- 1,353
- Errors
- 957
- Warnings
- 396
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 22 | 1,353 | 957 | 396 | v1.4.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.