Login with Vipps and MobilePay is the easiest way to sign in and create an account. No need to worry about usernames and passwords.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
250
11 issue groups
I18n
96
4 issue groups
Maintainability
85
10 issue groups
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$notice_logo $message"'.110
- Category
- Security
- Occurrences
- 110
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"$notice_logo $message"'.
ERRORI18nMissing Translators CommentA 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.89
- Category
- I18n
- Occurrences
- 89
- 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.
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.25
- Category
- Maintainability
- Occurrences
- 25
- Severity
- warning
Sample message
Use of a direct database call is discouraged.
WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $tablename at "SHOW TABLES LIKE '$tablename'"24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $tablename at "SHOW TABLES LIKE '$tablename'"
WARNINGSecurityRequest data is not unslashed$_COOKIE[LOGGED_IN_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar24
- Category
- Security
- Occurrences
- 24
- Severity
- warning
Sample message
$_COOKIE[LOGGED_IN_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityNo CachingDirect database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().23
- Category
- Maintainability
- Occurrences
- 23
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_COOKIE[LOGGED_IN_COOKIE]. Check that the array index exists before using it.19
- Category
- Security
- Occurrences
- 19
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_COOKIE[LOGGED_IN_COOKIE]. Check that the array index exists before using it.
ERRORSecurityDatabase parameter is not escapedUnescaped parameter $delete used in $wpdb->query()\n$delete assigned unsafely at line 1181.18
- Category
- Security
- Occurrences
- 18
- Severity
- error
Sample message
Unescaped parameter $delete used in $wpdb->query()\n$delete assigned unsafely at line 1181.
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $delete18
- Category
- Security
- Occurrences
- 18
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $delete
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.18
- Category
- Security
- Occurrences
- 18
- Severity
- warning
Sample message
Processing form data without nonce verification.
Show 15 moreShow less
WARNINGMaintainabilityNon-prefixed hook name10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "admin_notices".
ERRORSecurityUnsafe printing function9
- Category
- Security
- Occurrences
- 9
- 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 variable8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$ContinueWithVipps".
WARNINGMaintainabilityerror log error log8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
error_log() found. Debug code should not normally be used in production.
WARNINGSecurityInput is not sanitized5
- Category
- Security
- Occurrences
- 5
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[LOGGED_IN_COOKIE]
ERRORI18nNon Singular String Literal Text4
- Category
- I18n
- Occurrences
- 4
- Severity
- error
Sample message
The $text parameter must be a single text string literal. Found: $errordesc
ERRORMaintainabilityMissing direct file access protection4
- Category
- Maintainability
- Occurrences
- 4
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGSecurityDatabase parameter is not escaped3
- Category
- Security
- Occurrences
- 3
- Severity
- warning
Sample message
Unescaped parameter $tablename used in $wpdb->get_var()\n$tablename assigned unsafely at line 505.
ERRORMaintainabilityDeprecated parameter: add_option parameter 33
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
The parameter "false" at position #3 of add_option() has been deprecated since WordPress version 2.3.0. Instead do not pass the parameter.
ERRORMaintainabilitydate date2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGSecurityMissing nonce verification2
- Category
- Security
- Occurrences
- 2
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORI18nMissing Arg Domain2
- Category
- I18n
- Occurrences
- 2
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
WARNINGI18nDiscouraged text-domain loading1
- Category
- I18n
- Occurrences
- 1
- Severity
- warning
Sample message
load_plugin_textdomain() has been discouraged since WordPress version 4.6. When your plugin is hosted on WordPress.org, you no longer need to manually include this function call for translations under your plugin slug. WordPress will automatically load the translations for you as needed.
ERRORMaintainabilityNot Allowed1
- Category
- Maintainability
- Occurrences
- 1
- Severity
- error
Sample message
Use of heredoc syntax (<<<) is not allowed; use standard strings or inline HTML instead
WARNINGMaintainabilityNon-prefixed class1
- Category
- Maintainability
- Occurrences
- 1
- Severity
- warning
Sample message
Classes declared by a theme/plugin should start with the theme/plugin prefix. Found: "ContinueWithVipps".
External Connections
Potential connections found in static code analysis.
Outbound calls
31
External assets
10
Incoming endpoints
7
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
wp_ajax
Admin AJAX endpoints6
admin_post
admin_post
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v1.5.1
34
Latest
- Findings
- 437
- Errors
- 263
- Warnings
- 174
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 34 | 437 | 263 | 174 | v1.5.1 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.