VG WORT METIS

VG WORT METIS ist das offizielle Plugin der VG WORT zur Verwaltung von Zählmarken für Ihre WordPress Seiten und Beiträge.

v2.0.1vgwortUpdated Added 900 installs56% rating0% support resolved
28
Score
150
Errors
317
Warnings
+0
Change

Category Scores

Security0
Repo72
Performance100
Maintainability38

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

467 findings

Security

211

11 issue groups

Maintainability

156

10 issue groups

I18n

87

4 issue groups

WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.49
Category
Security
Occurrences
49
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORI18nMissing Arg DomainMissing $domain parameter in function call to esc_attr_e().44
Category
I18n
Occurrences
44
Severity
error

Sample message

Missing $domain parameter in function call to esc_attr_e().

WARNINGMaintainabilityNon-prefixed namespaceNamespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "WP_VGWORT".39
Category
Maintainability
Occurrences
39
Severity
warning

Sample message

Namespaces declared by a theme/plugin should start with the theme/plugin prefix. Found: "WP_VGWORT".

ERRORI18nNon Singular String Literal TextThe $text parameter must be a single text string literal. Found: $error_message37
Category
I18n
Occurrences
37
Severity
error

Sample message

The $text parameter must be a single text string literal. Found: $error_message

WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.35
Category
Maintainability
Occurrences
35
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().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().

WARNINGSecuritywp redirect wp redirectwp_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.27
Category
Security
Occurrences
27
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.

WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $table at \t\t\t $table\n25
Category
Security
Occurrences
25
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable $table at \t\t\t $table\n

WARNINGSecurityRequest data is not unslashed$_GET['custom_text'] not unslashed before sanitization. Use wp_unslash() or similar25
Category
Security
Occurrences
25
Severity
warning

Sample message

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

WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_FILES['wp_metis_csv_upload']['tmp_name']20
Category
Security
Occurrences
20
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_FILES['wp_metis_csv_upload']['tmp_name']

Show 15 more
ERRORMaintainabilityMissing direct file access protection19
Category
Maintainability
Occurrences
19
Severity
error

Sample message

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

WARNINGSecurityMissing nonce verification16
Category
Security
Occurrences
16
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecurityOutput is not escaped15
Category
Security
Occurrences
15
Severity
error

Sample message

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

ERRORSecuritySQL query is not prepared14
Category
Security
Occurrences
14
Severity
error

Sample message

Use placeholders and $wpdb->prepare(); found $query

WARNINGMaintainabilityNon-prefixed function13
Category
Maintainability
Occurrences
13
Severity
warning

Sample message

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

WARNINGSecurityInput is not validated11
Category
Security
Occurrences
11
Severity
warning

Sample message

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

WARNINGMaintainabilityerror log error log6
Category
Maintainability
Occurrences
6
Severity
warning

Sample message

error_log() found. Debug code should not normally be used in production.

ERRORSecurityDatabase parameter is not escaped5
Category
Security
Occurrences
5
Severity
error

Sample message

Unescaped parameter $sql used in $wpdb->query()\n$sql assigned unsafely at line 161.

WARNINGMaintainabilityMissing Version5
Category
Maintainability
Occurrences
5
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.

ERRORSecurityUnsafe printing function4
Category
Security
Occurrences
4
Severity
error

Sample message

All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.

WARNINGMaintainabilityNot In Footer4
Category
Maintainability
Occurrences
4
Severity
warning

Sample message

In footer ($in_footer) is not set explicitly wp_enqueue_script; It is recommended to load scripts in the footer. Please set this value to `true` to load it in the footer, or explicitly `false` if it should be loaded in the header.

ERRORI18nMissing Translators Comment4
Category
I18n
Occurrences
4
Severity
error

Sample message

A function call to esc_html__() 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.

WARNINGI18nDiscouraged text-domain loading2
Category
I18n
Occurrences
2
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.

WARNINGMaintainabilityNon-prefixed hook name2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

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

WARNINGMaintainabilityNon-prefixed global variable2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

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

External Connections

Potential connections found in static code analysis.

24 domains

Outbound calls

148

External assets

1

Incoming endpoints

18

Notable Domains

datatracker.ietf.org26 · outbound
php.net19 · outbound
tools.ietf.org16 · outbound
curl.haxx.se4 · outbound
bugs.php.net3 · outbound
curl.se2 · outbound

Platform / Reference Domains

gnu.org48 · platform/reference
github.com8 · platform/reference

External Asset Domains

Incoming Endpoints

No public endpoints detected.

Admin AJAX endpoints18
admin_post_wp_metis_ai_disclaimerauthenticated

admin_post

admin_post_wp_metis_check_api_keyauthenticated

admin_post

admin_post_wp_metis_check_pixelsauthenticated

admin_post

admin_post_wp_metis_import_csvauthenticated

admin_post

admin_post_wp_metis_order_pixelsauthenticated

admin_post

admin_post_wp_metis_save_messageauthenticated

admin_post

admin_post_wp_metis_scan_pixelsauthenticated

admin_post

wp_ajax_assign_pixel_to_postauthenticated

wp_ajax

wp_ajax_check_validity_and_ownershipauthenticated

wp_ajax

wp_ajax_get_posts_countauthenticated

wp_ajax

wp_ajax_gutenberg_save_postauthenticated

wp_ajax

wp_ajax_manually_assign_pixel_to_postauthenticated

wp_ajax

6 more hidden

Score History

First score snapshot

v2.0.1

28

Latest

Findings
467
Errors
150
Warnings
317
Check
2.0.0

Relationship Map

Author, categories, issues, domains, and nearby plugins.

36 nodes

Related Plugins