Tuskcode Map Pro for Bing Maps

Designed to create accesible maps from bing, with multiple options of pins, width, height, custom pins, and address.

v5.0.5dan009Updated Added 700 installs96% rating
35
Score
59
Errors
359
Warnings
+0
Change

Category Scores

Security0
Repo94
Performance100
Maintainability54

Issues to Review

Prioritized issue groups from the latest Plugin Check scan

418 findings

Security

226

10 issue groups

Maintainability

189

10 issue groups

I18n

2

2 issue groups

Repo Compliance

1

1 issue group

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

Sample message

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

WARNINGSecurityInterpolated SQL is not preparedUse placeholders and $wpdb->prepare(); found interpolated variable $pins_map_table at "DELETE FROM $pins_map_table WHERE pin_id = %d;"50
Category
Security
Occurrences
50
Severity
warning

Sample message

Use placeholders and $wpdb->prepare(); found interpolated variable $pins_map_table at "DELETE FROM $pins_map_table WHERE pin_id = %d;"

ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<option id='sel-{$key}' value='{$key}' > {$type} </option>"'.44
Category
Security
Occurrences
44
Severity
error

Sample message

All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"<option id='sel-{$key}' value='{$key}' > {$type} </option>"'.

WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET[&#039;email&#039;]. Check that the array index exists before using it.40
Category
Security
Occurrences
40
Severity
warning

Sample message

Detected usage of a possibly undefined superglobal array index: $_GET[&#039;email&#039;]. Check that the array index exists before using it.

WARNINGSecurityDatabase parameter is not escapedUnescaped parameter $pins_map_table used in $wpdb-&gt;get_results()\n$pins_map_table assigned unsafely at line 344.36
Category
Security
Occurrences
36
Severity
warning

Sample message

Unescaped parameter $pins_map_table used in $wpdb-&gt;get_results()\n$pins_map_table assigned unsafely at line 344.

WARNINGMaintainabilityMissing VersionResource 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.23
Category
Maintainability
Occurrences
23
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 global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$BMP_PLUGIN_VERSION&quot;.20
Category
Maintainability
Occurrences
20
Severity
warning

Sample message

Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;$BMP_PLUGIN_VERSION&quot;.

WARNINGSecurityRequest data is not unslashed$_GET[&#039;email&#039;] not unslashed before sanitization. Use wp_unslash() or similar17
Category
Security
Occurrences
17
Severity
warning

Sample message

$_GET[&#039;email&#039;] not unslashed before sanitization. Use wp_unslash() or similar

WARNINGMaintainabilityNot In FooterIn 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.16
Category
Maintainability
Occurrences
16
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.

Show 13 more
WARNINGMaintainabilitySchema Change14
Category
Maintainability
Occurrences
14
Severity
warning

Sample message

Attempting a database schema change is discouraged.

WARNINGSecurityInput is not sanitized14
Category
Security
Occurrences
14
Severity
warning

Sample message

Detected usage of a non-sanitized input variable: $_GET[&#039;plugin&#039;]

WARNINGSecurityMissing nonce verification9
Category
Security
Occurrences
9
Severity
warning

Sample message

Processing form data without nonce verification.

WARNINGSecurityNonce verification recommended7
Category
Security
Occurrences
7
Severity
warning

Sample message

Processing form data without nonce verification.

ERRORSecurityUnsupported Identifier Placeholder6
Category
Security
Occurrences
6
Severity
error

Sample message

The %i modifier is only supported in WP 6.2 or higher. Found: "%i".

WARNINGMaintainabilityNon-prefixed function6
Category
Maintainability
Occurrences
6
Severity
warning

Sample message

Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: &quot;bmp_add_map_pins&quot;.

ERRORSecurityDatabase parameter is not escaped3
Category
Security
Occurrences
3
Severity
error

Sample message

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

ERRORMaintainabilityNon Enqueued Script3
Category
Maintainability
Occurrences
3
Severity
error

Sample message

Scripts must be registered/enqueued via wp_enqueue_script()

WARNINGMaintainabilityNon-prefixed constant2
Category
Maintainability
Occurrences
2
Severity
warning

Sample message

Global constants defined by a theme/plugin should start with the theme/plugin prefix. Found: &quot;BMP_PLUGIN_URL&quot;.

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.

ERRORI18nMissing Translators Comment1
Category
I18n
Occurrences
1
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.

ERRORMaintainabilitybadly named files1
Category
Maintainability
Occurrences
1
Severity
error

Sample message

File and folder names must not contain spaces or special characters.

ERRORRepo Complianceoutdated tested upto header1
Category
Repo Compliance
Occurrences
1
Severity
error

Sample message

Tested up to: 6.9 < 7.0. The "Tested up to" value in your plugin is not set to the current version of WordPress. This means your plugin will not show up in searches, as we require plugins to be compatible and documented as tested up to the most recent version of WordPress.

External Connections

Potential connections found in static code analysis.

14 domains

Outbound calls

34

External assets

4

Incoming endpoints

7

Notable Domains

tuskcode.com5 · outbound
fontawesome.com4 · outbound
bootstrap-table.com2 · outbound
bootstraptoggle.com2 · outbound
getbootstrap.com2 · outbound
wenzhixin.net.cn2 · outbound

Platform / Reference Domains

w3.org4 · platform/reference
github.com2 · platform/reference
opensource.org1 · platform/reference
wordpress.org1 · platform/reference

External Asset Domains

bing.com10 · asset + outbound

Incoming Endpoints

No public endpoints detected.

Admin AJAX endpoints7
wp_ajax_bmp_ajax_permissionsauthenticated

wp_ajax

wp_ajax_bmp_general_settingsauthenticated

wp_ajax

wp_ajax_bmp_map_actionsauthenticated

wp_ajax

wp_ajax_bmp_new_pinauthenticated

wp_ajax

wp_ajax_bmp_pin_actionsauthenticated

wp_ajax

wp_ajax_bmp_save_mapauthenticated

wp_ajax

wp_ajax_bmp_shape_actionsauthenticated

wp_ajax

Score History

First score snapshot

v5.0.5

35

Latest

Findings
418
Errors
59
Warnings
359
Check
2.0.0

Relationship Map

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

36 nodes

Related Plugins

Image Hotspot by DevVN

30k+ active installs

99
99
99
Very Simple Google Maps

3k+ active installs

99
VS Meta Description

3k+ active installs

99