Title: [Security] Bump highlight.js from 9.18.1 to 11.0.1 by dependabot-preview[bot] · Pull Request #32 · python-gino/python-gino.org · GitHub
Open Graph Title: [Security] Bump highlight.js from 9.18.1 to 11.0.1 by dependabot-preview[bot] · Pull Request #32 · python-gino/python-gino.org
X Title: [Security] Bump highlight.js from 9.18.1 to 11.0.1 by dependabot-preview[bot] · Pull Request #32 · python-gino/python-gino.org
Description: Bumps highlight.js from 9.18.1 to 11.0.1. This update includes security fixes. Vulnerabilities fixed Sourced from The GitHub Security Advisory Database. ReDOS vulnerabities: multiple grammars Impact: Potential ReDOS vulnerabilities (exponential and polynomial RegEx backtracking) oswasp: > The Regular expression Denial of Service (ReDoS) is a Denial of Service attack, that exploits the fact that most Regular Expression implementations may reach extreme situations that cause them to work very slowly (exponentially related to input size). An attacker can then cause a program using a Regular Expression to enter these extreme situations and then hang for a very long time. If are you are using Highlight.js to highlight user-provided data you are possibly vulnerable. On the client-side (in a browser or Electron environment) risks could include lengthy freezes or crashes... On the server-side infinite freezes could occur... effectively preventing users from accessing your app or service (ie, Denial of Service). This is an issue with grammars shipped with the parser (and potentially 3rd party grammars also), not the parser itself. If you are using Highlight.js with any of the following grammars you are vulnerable. If you are using highlightAuto to detect the language (and have any of these grammars registered) you are vulnerable. All versions prior to 10.4.1 are vulnerable, including version 9.18.5. Grammars with exponential backtracking issues: c-like (c, cpp, arduino) handlebars (htmlbars) gams perl jboss-cli r ... (truncated) Affected versions: >= 9.0.0 < 10.4.1 Sourced from The GitHub Security Advisory Database. Prototype Pollution in highlight.js Impact Affected versions of this package are vulnerable to Prototype Pollution. A malicious HTML code block can be crafted that will result in prototype pollution of the base object's prototype during highlighting. If you allow users to insert custom HTML code blocks into your page/app via parsing Markdown code blocks (or similar) and do not filter the language names the user can provide you may be vulnerable. The pollution should just be harmless data but this can cause problems for applications not expecting these properties to exist and can result in strange behavior or application crashes, i.e. a potential DOS vector. If your website or application does not render user provided data it should be unaffected. Patches Versions 9.18.2 and 10.1.2 and newer include fixes for this vulnerability. If you are using version 7 or 8 you are encouraged to upgrade to a newer release. Workarounds Patch your library Manually patch your library to create null objects for both languages and aliases: const HLJS = function(hljs) { ... (truncated) Affected versions: < 9.18.2 Release notes Sourced from highlight.js's releases. Version 11 Potentially Breaking Changes This is a major release. As such it contains breaking changes which may require action from users. Most of the breaking changes work was done by the current maintainer [Josh Goebel][] (ref: #2558) while many other contributors contributed many other changes for this release. You'll find that list below the breaking changes summary. Please read VERSION_11_UPGRADE.md for a detailed summary of all breaking changes. The below list should only be considered to be a summary. Deprecations / Removals / API Changes: initHighlighting() and initHighlightingOnLoad() deprecated. Use highlightAll(). highlightBlock(el) deprecated. Use highlightElement(el) before:highlightBlock & after:highlightBlock callbacks deprecated. Use equivalent highlightElement callbacks. highlight(languageName, code, ignoreIllegals, continuation) signature deprecated. Use highlight(code, {language, ignoreIllegals}). Deprecated highlight() signature no longer supports continuation argument. tabReplace option removed. Consider a plugin. useBR option removed. Consider a plugin or CSS. requireLanguage() removed. Use getLanguage(). endSameAsBegin mode key removed. Use hljs.END_SAME_AS_BEGIN. lexemes mode key removed. Use keywords.$pattern. The return values/keys of some APIs have changed slightly. Security: HTML auto-passthru has been removed. Consider a plugin. Unescaped HTML is now stripped (for security). A warning is logged to the console. (#3057) [Josh Goebel][] Themes: The default padding of all themes increases (0.5em => 1em). schoolbook has been updated to remove the lined background. github updated to better match modern GitHub (#1616) [Jan Pilzer][] github-gist has been removed in favor of github [Jan Pilzer][] Base16 named themes have been updated to their "canonical" versions nnfx updated for v11 xml styles and improved css support Language Grammars: Default CDN build drops support for several languages. Some language grammar files have been removed. Some redundant language aliases have been removed. Other changes Parser: enh(vala) improve language detection for Vala (#3195) [Konrad Rudolph][] enh(r) add support for operators, fix number highlighting bug (#3194, #3195) [Konrad Rudolph][] enh(parser) add beginScope and endScope to allow separate scoping begin and end (#3159) [Josh Goebel][] enh(parsed) endScope now supports multi-class matchers as well (#3159) [Josh Goebel][] enh(parser) highlightElement now always tags blocks with a consistent language-[name] class [Josh Goebel][] ... (truncated) Changelog Sourced from highlight.js's changelog. Version 11.0.1 (fix) use console.log for .js.js deprecation warning (#3222) Josh Goebel (fix) do not restrict exports from cdn-assets (#3223) Josh Goebel Version 11.0.0 This is a major release. As such it contains breaking changes which may require action from users. Please read VERSION_11_UPGRADE.md for a detailed summary of all breaking changes. Potentially breaking changes Unless otherwise attributed items below are thanks to Josh Goebel (ref: #2558). The below list should only be considered to be a high-level summary. Deprecations / Removals / API Changes: initHighlighting() and initHighlightingOnLoad() deprecated. Use highlightAll(). highlightBlock(el) deprecated. Use highlightElement(el) before:highlightBlock & after:highlightBlock callbacks deprecated. Use equivalent highlightElement callbacks. highlight(languageName, code, ignoreIllegals, continuation) signature deprecated. Use highlight(code, {language, ignoreIllegals}). Deprecated highlight() signature no longer supports continuation argument. tabReplace option removed. Consider a plugin. useBR option removed. Consider a plugin or CSS. requireLanguage() removed. Use getLanguage(). endSameAsBegin mode key removed. Use hljs.END_SAME_AS_BEGIN. lexemes mode key removed. Use keywords.$pattern. The return values/keys of some APIs have changed slightly. Security: HTML auto-passthru has been removed. Consider a plugin. Unescaped HTML is now stripped (for security). A warning is logged to the console. (#3057) Josh Goebel Themes: The default padding of all themes increases (0.5em => 1em). schoolbook has been updated to remove the lined background. github updated to better match modern GitHub (#1616) [Jan Pilzer][] github-gist has been removed in favor of github [Jan Pilzer][] Base16 named themes have been updated to their "canonical" versions nnfx updated for v11 xml styles and improved css support Language Grammars: Default CDN build drops support for several languages. Some language grammar files have been removed. ... (truncated) Commits 1cf31f0 (chore) release 11.0.1 fbf223a (fix) use console.log for .js.js deprecation warning 9268dc2 (fix) do not restrict exports from cdn-assets 2185721 bump for CDN redeploy 0261c45 (chore) update browser tests 1c7c696 (chore) bump some deps 970a4d3 (fix) fire after:highlightElement after DOM is updated 947e925 bump version to 11.0.0 5dc5176 (chore) dual package (#3188) 15ed6a4 enh(r) Add operators and punctuation (#3195) Additional commits viewable in compare view Maintainer changes This version was pushed to npm by highlightjs_bot, a new releaser for highlight.js since your current version. Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) @dependabot use these labels will set the current labels as the default for future PRs for this repo and language @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot dashboard: Update frequency (including time of day and day of week) Pull request limits (per update run and/or open at any time) Out-of-range updates (receive only lockfile updates, if desired) Security updates (receive only security updates, if desired)
Open Graph Description: Bumps highlight.js from 9.18.1 to 11.0.1. This update includes security fixes. Vulnerabilities fixed Sourced from The GitHub Security Advisory Database. ReDOS vulnerabities: multiple grammars Imp...
X Description: Bumps highlight.js from 9.18.1 to 11.0.1. This update includes security fixes. Vulnerabilities fixed Sourced from The GitHub Security Advisory Database. ReDOS vulnerabities: multiple grammars Imp...
Opengraph URL: https://github.com/python-gino/python-gino.org/pull/32
X: @github
Domain: patch-diff.githubusercontent.com
| route-pattern | /:user_id/:repository/pull/:id/checks(.:format) |
| route-controller | pull_requests |
| route-action | checks |
| fetch-nonce | v2:1f953acb-858e-cedf-7631-9e07935d0e44 |
| current-catalog-service-hash | 87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a |
| request-id | E84E:23810A:3DCB0A7:50CFDC8:6992DF3A |
| html-safe-nonce | 84dddc811f509282f803ee40c9ec0cfdfe310a086d6944696b0038462306c600 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFODRFOjIzODEwQTozRENCMEE3OjUwQ0ZEQzg6Njk5MkRGM0EiLCJ2aXNpdG9yX2lkIjoiNTg4NTE5ODk1Nzk1Nzc5OTczOCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | 701e6c94f40c6369dde48769bcafdcd3ff7971d80139902a59e4aac7ac73431d |
| hovercard-subject-tag | pull_request:663282315 |
| github-keyboard-shortcuts | repository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/python-gino/python-gino.org/pull/32/checks |
| twitter:image | https://avatars.githubusercontent.com/in/2141?s=400&v=4 |
| twitter:card | summary_large_image |
| og:image | https://avatars.githubusercontent.com/in/2141?s=400&v=4 |
| og:image:alt | Bumps highlight.js from 9.18.1 to 11.0.1. This update includes security fixes. Vulnerabilities fixed Sourced from The GitHub Security Advisory Database. ReDOS vulnerabities: multiple grammars Imp... |
| og:site_name | GitHub |
| og:type | object |
| hostname | github.com |
| expected-hostname | github.com |
| None | 42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b |
| turbo-cache-control | no-preview |
| go-import | github.com/python-gino/python-gino.org git https://github.com/python-gino/python-gino.org.git |
| octolytics-dimension-user_id | 59060114 |
| octolytics-dimension-user_login | python-gino |
| octolytics-dimension-repository_id | 229087454 |
| octolytics-dimension-repository_nwo | python-gino/python-gino.org |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 229087454 |
| octolytics-dimension-repository_network_root_nwo | python-gino/python-gino.org |
| turbo-body-classes | logged-out env-production page-responsive full-width full-width-p-0 |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 84dcb133269e3cfe6e0296cc85fbacb92cae92bb |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width