Designed to create accesible maps from bing, with multiple options of pins, width, height, custom pins, and address.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
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['email']. 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['email']. Check that the array index exists before using it.
WARNINGSecurityDatabase parameter is not escapedUnescaped parameter $pins_map_table used in $wpdb->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->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: "$BMP_PLUGIN_VERSION".20
- Category
- Maintainability
- Occurrences
- 20
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$BMP_PLUGIN_VERSION".
WARNINGSecurityRequest data is not unslashed$_GET['email'] not unslashed before sanitization. Use wp_unslash() or similar17
- Category
- Security
- Occurrences
- 17
- Severity
- warning
Sample message
$_GET['email'] 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 moreShow less
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['plugin']
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: "bmp_add_map_pins".
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: "BMP_PLUGIN_URL".
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.
Outbound calls
34
External assets
4
Incoming endpoints
7
Notable Domains
Platform / Reference Domains
External Asset Domains
Incoming Endpoints
No public endpoints detected.
Admin AJAX endpoints7
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
wp_ajax
Score History
First score snapshot
v5.0.5
35
Latest
- Findings
- 418
- Errors
- 59
- Warnings
- 359
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 35 | 418 | 59 | 359 | v5.0.5 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.