chore(deps): update dependency pymdown-extensions to v10 [security] #97
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.5
->10.0
GitHub Vulnerability Alerts
CVE-2023-32309
Summary
Arbitrary file read when using include file syntax.
Details
By using the syntax
--8<--"/etc/passwd"
or--8<--"/proc/self/environ"
the content of these files will be rendered in the generated documentation. Additionally, a path relative to a specified, allowed base path can also be used to render the content of a file outside the specified base paths:--8<-- "../../../../etc/passwd"
.Within the Snippets extension, there exists a
base_path
option but the implementation is vulnerable to Directory Traversal.The vulnerable section exists in
get_snippet_path(self, path)
lines 155 to 174 in snippets.py.PoC
Impact
Any readable file on the host where the plugin is executing may have its content exposed. This can impact any use of Snippets that exposes the use of Snippets to external users.
It is never recommended to use Snippets to process user-facing, dynamic content. It is designed to process known content on the backend under the control of the host, but if someone were to accidentally enable it for user-facing content, undesired information could be exposed.
Suggestion
Specified snippets should be restricted to the configured, specified base paths as a safe default. Allowing relative or absolute paths that escape the specified base paths would need to be behind a feature switch that must be opt-in and would be at the developer's own risk.
Release Notes
facelessuser/pymdown-extensions (pymdown-extensions)
v10.0
Compare Source
10.0
base_path
preventing snippetsrelative to the
base_path
but not explicitly under it.restrict_base_path
can be set toFalse
for legacybehavior.
v9.11
Compare Source
9.11
v9.10
Compare Source
9.10
containers for specialized parsing. A number of extensions utilizing general purpose blocks are included and are meant
to be an alternative to (and maybe one day replace): Admonitions, Details, Definition Lists, and Tabbed. Also adds a
new HTML plugin for quick wrapping of content with arbitrary HTML elements.
ids will be generated using that code ID instead of the code block count.
-
and_
.check_paths
is enabled, and a specified section is not found, raise an error.dedent_sections
that will de-indent (remove any common leadingwhitespace from every line in text) from that block of text.
v9.9.2
Compare Source
9.9.2
--
. Relax Snippets syntax such that-8<-
(single-
) are allowed.v9.9.1
Compare Source
9.9.1
v9.9
Compare Source
9.9
*
or_
surrounded by whitespace are not considered as a token.^^
nested between^
would be handled in an unexpected way.^
surrounded by whitespace are not considered as a token.~~
nested between~
would be handled in an unexpected way.~
surrounded by whitespace are not considered a token.=
surrounded by whitespace are not considered a token.v9.8
Compare Source
9.8
**
nested between*
would be handled in an unexpected way.v9.7
Compare Source
9.7
v9.6
Compare Source
9.6
guess_lang
option (e.g.
block
vsinline
).;
.Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.