Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Jsoup to avoid CVE-2022-36033 #2772

Merged
merged 1 commit into from Dec 15, 2022
Merged

Conversation

IgnatBeresnev
Copy link
Member

Fixes #2754

@@ -197,7 +197,7 @@ class PageTransformerBuilderTest : BaseAbstractTest() {
assertContains(generatedFiles.keys, "scripts/symbol-parameters-wrapper_deferred.js")

val scripts = generatedFiles.getValue("root/test/-test/-test.html").let { Jsoup.parse(it) }.select("script")
val deferredScriptSources = scripts.filter { it.hasAttr("defer") }.map { it.attr("src") }
val deferredScriptSources = scripts.filter { element -> element.hasAttr("defer") }.map { it.attr("src") }
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #2754 (comment) for the explanation

@IgnatBeresnev IgnatBeresnev merged commit f6ea66c into master Dec 15, 2022
@IgnatBeresnev IgnatBeresnev deleted the CVE-2022-36033_update-jsoup branch December 15, 2022 03:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Upgrade jsoup to 1.15.3 to mitigate against CVE vulnerability
2 participants