MAS Videos is a free plugin that allows you to to create and list movies, videos and TV shows.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
1,430
12 issue groups
Maintainability
690
11 issue groups
I18n
38
2 issue groups
WARNINGMaintainabilityNon-prefixed global variableGlobal variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_page_url".325
- Category
- Maintainability
- Occurrences
- 325
- Severity
- warning
Sample message
Global variables defined by a theme/plugin should start with the theme/plugin prefix. Found: "$account_page_url".
ERRORSecurityOutput is not escapedAll output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$after'.319
- Category
- Security
- Occurrences
- 319
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$after'.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_COOKIE[WP_SESSION_COOKIE]272
- Category
- Security
- Occurrences
- 272
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_COOKIE[WP_SESSION_COOKIE]
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.264
- Category
- Security
- Occurrences
- 264
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityMissing nonce verificationProcessing form data without nonce verification.198
- Category
- Security
- Occurrences
- 198
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityRequest data is not unslashed$_COOKIE[WP_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar142
- Category
- Security
- Occurrences
- 142
- Severity
- warning
Sample message
$_COOKIE[WP_SESSION_COOKIE] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.98
- Category
- Maintainability
- Occurrences
- 98
- 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().97
- Category
- Maintainability
- Occurrences
- 97
- 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: $_FILES['import']['name']. Check that the array index exists before using it.97
- Category
- Security
- Occurrences
- 97
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_FILES['import']['name']. Check that the array index exists before using it.
WARNINGMaintainabilityNon-prefixed functionFunctions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_masvideos_get_cached_episode_terms".51
- Category
- Maintainability
- Occurrences
- 51
- Severity
- warning
Sample message
Functions declared in the global namespace by a theme/plugin should start with the theme/plugin prefix. Found: "_masvideos_get_cached_episode_terms".
Show 15 moreShow less
ERRORSecurityException output is not escaped39
- Category
- Security
- Occurrences
- 39
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '$attribute_id'.
ERRORMaintainabilityDeprecated parameter: get_terms parameter 236
- Category
- Maintainability
- Occurrences
- 36
- Severity
- error
Sample message
The parameter "$args" at position #2 of get_terms() has been deprecated since WordPress version 4.5.0. Instead do not pass the parameter.
WARNINGMaintainabilityNon-prefixed hook name34
- Category
- Maintainability
- Occurrences
- 34
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: " masvideos_get_price_decimal_separator".
WARNINGSecurityInterpolated SQL is not prepared33
- Category
- Security
- Occurrences
- 33
- Severity
- warning
Sample message
Use placeholders and $wpdb->prepare(); found interpolated variable $andor_op at "(($wpdb->posts.post_title $like_op %s) $andor_op ($wpdb->posts.post_excerpt $like_op %s) $andor_op ($wpdb->posts.post_content $like_op %s))"
ERRORSecurityUnsafe printing function30
- Category
- Security
- Occurrences
- 30
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORI18nMissing Translators Comment30
- Category
- I18n
- Occurrences
- 30
- 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.
WARNINGSecuritywp redirect wp redirect16
- Category
- Security
- Occurrences
- 16
- 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.
WARNINGMaintainabilityNot In Footer16
- Category
- Maintainability
- Occurrences
- 16
- Severity
- warning
Sample message
In footer ($in_footer) is not set explicitly wp_register_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.
WARNINGSecurityDatabase parameter is not escaped11
- Category
- Security
- Occurrences
- 11
- Severity
- warning
Sample message
Unescaped parameter $db_info['meta_id_field'] used in $wpdb->get_results()\n$db_info['meta_id_field'] used without escaping.
WARNINGMaintainabilityslow db query meta query10
- Category
- Maintainability
- Occurrences
- 10
- Severity
- warning
Sample message
Detected usage of meta_query, possible slow query.
ERRORSecuritySQL query is not prepared9
- Category
- Security
- Occurrences
- 9
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $post_type
ERRORMaintainabilitydate date8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
WARNINGMaintainabilityDynamic hook name8
- Category
- Maintainability
- Occurrences
- 8
- Severity
- warning
Sample message
Hook names invoked by a theme/plugin should start with the theme/plugin prefix. Found: "$filter . '_notification'".
ERRORI18nMissing Singular Placeholder8
- Category
- I18n
- Occurrences
- 8
- Severity
- error
Sample message
Missing singular placeholder, needed for some languages. See https://codex.wordpress.org/I18n_for_WordPress_Developers#Plurals
ERRORMaintainabilityrand rand7
- Category
- Maintainability
- Occurrences
- 7
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
External Connections
Not analyzed yet.
Score History
First score snapshot
v1.3.4
20
Latest
- Findings
- 2,212
- Errors
- 519
- Warnings
- 1,693
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 20 | 2,212 | 519 | 1,693 | v1.3.4 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.