Easily embed and manage videos from Infomaniak VOD in your posts, comments and RSS feeds. You need an Infomaniak VOD account to use this plugin.
Category Scores
Issues to Review
Prioritized issue groups from the latest Plugin Check scan
Security
785
11 issue groups
I18n
221
4 issue groups
Maintainability
164
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 '"' $selected>"'.229
- Category
- Security
- Occurrences
- 229
- Severity
- error
Sample message
All output should be run through an escaping function (see the Security sections in the WordPress Developer Handbooks), found '"' $selected>"'.
ERRORI18nText Domain MismatchMismatched text domain. Expected 'vod-infomaniak' but got 'text-domain'.211
- Category
- I18n
- Occurrences
- 211
- Severity
- error
Sample message
Mismatched text domain. Expected 'vod-infomaniak' but got 'text-domain'.
ERRORSecurityUnsafe printing functionAll output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.154
- Category
- Security
- Occurrences
- 154
- Severity
- error
Sample message
All output should be run through an escaping function (like esc_html_e() or esc_attr_e()), found '_e'.
ERRORSecuritySQL query is not preparedUse placeholders and $wpdb->prepare(); found $aFoldersList130
- Category
- Security
- Occurrences
- 130
- Severity
- error
Sample message
Use placeholders and $wpdb->prepare(); found $aFoldersList
WARNINGSecurityInput is not validatedDetected usage of a possibly undefined superglobal array index: $_GET['nonce']. Check that the array index exists before using it.65
- Category
- Security
- Occurrences
- 65
- Severity
- warning
Sample message
Detected usage of a possibly undefined superglobal array index: $_GET['nonce']. Check that the array index exists before using it.
WARNINGSecurityRequest data is not unslashed$_GET['nonce'] not unslashed before sanitization. Use wp_unslash() or similar59
- Category
- Security
- Occurrences
- 59
- Severity
- warning
Sample message
$_GET['nonce'] not unslashed before sanitization. Use wp_unslash() or similar
WARNINGMaintainabilityDirect QueryUse of a direct database call is discouraged.57
- Category
- Maintainability
- Occurrences
- 57
- 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().51
- Category
- Maintainability
- Occurrences
- 51
- Severity
- warning
Sample message
Direct database call without caching detected. Consider using wp_cache_get() / wp_cache_set() or wp_cache_delete().
WARNINGSecurityNonce verification recommendedProcessing form data without nonce verification.40
- Category
- Security
- Occurrences
- 40
- Severity
- warning
Sample message
Processing form data without nonce verification.
WARNINGSecurityInput is not sanitizedDetected usage of a non-sanitized input variable: $_GET['nonce']40
- Category
- Security
- Occurrences
- 40
- Severity
- warning
Sample message
Detected usage of a non-sanitized input variable: $_GET['nonce']
Show 15 moreShow less
WARNINGSecurityDatabase parameter is not escaped38
- Category
- Security
- Occurrences
- 38
- Severity
- warning
Sample message
Unescaped parameter $db->db_table_folder used in $wpdb->query()\n$db->db_table_folder used without escaping.
ERRORMaintainabilitywp function not compatible with requires wp22
- Category
- Maintainability
- Occurrences
- 22
- Severity
- error
Sample message
Function "sanitize_key()" requires WordPress 3.0.0, but your plugin minimum supported version is WordPress 2.8.6.
ERRORSecurityDatabase parameter is not escaped13
- Category
- Security
- Occurrences
- 13
- Severity
- error
Sample message
Unescaped parameter $sql used in $wpdb->get_results()\n$sql assigned unsafely at line 1507.
WARNINGMaintainabilitySchema Change11
- Category
- Maintainability
- Occurrences
- 11
- Severity
- warning
Sample message
Attempting a database schema change is discouraged.
WARNINGSecurityMissing nonce verification10
- Category
- Security
- Occurrences
- 10
- Severity
- warning
Sample message
Processing form data without nonce verification.
ERRORMaintainabilityShort PHP open tag found9
- Category
- Maintainability
- Occurrences
- 9
- Severity
- error
Sample message
Short PHP opening tag used with echo; expected "<?php echo $actionurl ..." but found "<?= $actionurl ..."
WARNINGSecurityPlugin menu slug uses __FILE__7
- Category
- Security
- Occurrences
- 7
- Severity
- warning
Sample message
Using __FILE__ for menu slugs risks exposing filesystem structure.
ERRORMaintainabilitydate date5
- Category
- Maintainability
- Occurrences
- 5
- Severity
- error
Sample message
date() is affected by runtime timezone changes which can cause date/time to be incorrectly displayed. Use gmdate() instead.
ERRORI18nMissing Arg Domain4
- Category
- I18n
- Occurrences
- 4
- Severity
- error
Sample message
Missing $domain parameter in function call to __().
ERRORI18nMissing Translators Comment3
- Category
- I18n
- Occurrences
- 3
- 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.
ERRORI18nUnordered Placeholders Text3
- Category
- I18n
- Occurrences
- 3
- Severity
- error
Sample message
Multiple placeholders in translatable strings should be ordered. Expected "%1\$d, %2\$d", but got "%d, %d" in "Cette option vous permet de mettre a jour automatiquement votre blog a chaque ajout de video a votre espace VOD.<br/>Veuillez aller dans \"<a href='https://manager.infomaniak.com/v3/%d/vod/%d/plugin/callbacks' target='_blank'>Extensions CMS/API -> Callback</a>\" et mettre l'adresse suivante dans le champ \"Adresse de Callback\"".
ERRORMaintainabilityMissing direct file access protection3
- Category
- Maintainability
- Occurrences
- 3
- Severity
- error
Sample message
PHP file should prevent direct access. Add a check like: if ( ! defined( 'ABSPATH' ) ) exit;
WARNINGMaintainabilityerror log var dump2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- warning
Sample message
var_dump() found. Debug code should not normally be used in production.
ERRORMaintainabilityrand rand2
- Category
- Maintainability
- Occurrences
- 2
- Severity
- error
Sample message
rand() is discouraged. Use the far less predictable wp_rand() instead.
WARNINGMaintainabilityMissing Version2
- Category
- Maintainability
- Occurrences
- 2
- 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.
External Connections
Not analyzed yet.
Score History
First score snapshot
v1.5.14
27
Latest
- Findings
- 1,182
- Errors
- 797
- Warnings
- 385
- Check
- 2.0.0
| Scan | Score | Findings | Errors | Warnings | Plugin | Check |
|---|---|---|---|---|---|---|
| Latest | 27 | 1,182 | 797 | 385 | v1.5.14 | 2.0.0 |
Relationship Map
Author, categories, issues, domains, and nearby plugins.