Security NEXTAugust 25, 2026🇯🇵Translated from Japanese

CISA Adds Oracle WebLogic Proxy Plug-in Flaw CVE-2026-21962 to KEV Catalog After Confirmed Exploitation

The U.S. Cybersecurity and Infrastructure Security Agency (CISA) has warned that a vulnerability in the Oracle WebLogic Server Proxy Plug-in (mod_wl_ohs) is being actively exploited in the wild.

On August 24, 2026, CISA added the access-control flaw tracked as CVE-2026-21962 to its Known Exploited Vulnerabilities (KEV) catalog. The affected module enables web servers to proxy requests to Oracle WebLogic Server and is distributed with Oracle HTTP Server.

Equivalent plug-ins for Apache HTTP Server and IIS are also impacted. The vulnerability can be exploited remotely without authentication, allowing attackers to modify or delete data, inject malicious content, and leak sensitive information from the web server and any connected backend systems.

Security researchers note that successful exploitation could grant attackers broad control over proxied resources and potentially pivot into Oracle WebLogic environments. Organizations are urged to apply available mitigations or disable the plug-in where possible until patches are deployed.

Related articles

AntiMalwareVulnerabilities & Exploits

New Windows 11 Bypass Lets Users Skip Internet and Microsoft Account During Setup

A new method has been discovered that allows Windows 11 Home users to complete initial setup without an internet connection or Microsoft account. The technique requires no command-line tools or scripts and was found by enthusiast Bob Pony. During the OOBE process, users simply open the sign-in options and click the Learn more link, which redirects the wizard to local account creation. Previous bypasses such as OOBE\bypassnro and start ms-cxh:localonly have already been blocked by Microsoft. The new approach appears to be an overlooked interface element and works only on the Home edition. Microsoft is expected to close this loophole in a future update as it continues tightening account requirements.

Security NEXTVulnerabilities & Exploits

CISA Adds Four Actively Exploited Vulnerabilities in GitLab, ConnectWise ScreenConnect and JFrog Artifactory to KEV Catalog

The U.S. Cybersecurity and Infrastructure Security Agency has added four vulnerabilities to its Known Exploited Vulnerabilities catalog after confirming active exploitation in the wild. The flaws affect GitLab Community Edition and Enterprise Edition, ConnectWise ScreenConnect, and JFrog Artifactory. CVE-2026-85706 allows unauthenticated path traversal in GitLab’s commit API, enabling arbitrary file reads. CVE-2026-84869 in ScreenConnect permits unauthorized file transfer and execution over active remote sessions. Two additional issues in Artifactory, CVE-2026-42018 and CVE-2026-42016, can lead to token leakage and privilege escalation. Federal agencies have been directed to apply mitigations and investigate potential compromises by specific deadlines.

Security NEXTVulnerabilities & Exploits

Critical Vulnerability in ConnectWise ScreenConnect Enables Unauthorized File Transfers

ConnectWise has disclosed a serious vulnerability in its remote access product ScreenConnect that allows attackers to transfer and execute files from active remote sessions without requiring authorization or host-side confirmation. The flaw, tracked as CVE-2026-84869, impacts both Support and Access session types and carries a CVSS v3.1 base score of 9.9, placing it in the Critical severity category. The company rated the issue as Important in its three-tier scale and assigned it the highest priority of High. Exploitation of the vulnerability has already been confirmed in the wild, increasing the urgency for organizations using the product. ConnectWise published the security advisory on September 8, 2026, urging users to apply available mitigations promptly. The vulnerability stems from improper handling in the file transfer process within the client component.

HabrVulnerabilities & Exploits

Can IDOR Vulnerabilities Be Found Through Static Analysis? New Python Kernel Aims to Answer the Question

A researcher has developed a static analysis module for detecting Insecure Direct Object Reference (IDOR) vulnerabilities in Python web applications. The tool moves beyond simple heuristics by tracking the relationship between user-controlled identifiers, database objects, and authorization checks. It supports Django, Django REST Framework, Flask, and FastAPI, using a custom taint-tracking system called SIAOD to label data origins. Existing approaches such as OpenAPI specifications, broad AST heuristics, Semgrep, and CodeQL were analyzed and found insufficient for capturing the precise semantics of IDOR. Testing on 150 small repositories yielded 48 true positives out of 112 findings, while analysis of 12 million lines of production code from 15 companies produced only five confirmed issues amid hundreds of false positives caused by authorization logic residing outside handler functions. The work demonstrates both the feasibility and current limitations of deterministic static detection for this vulnerability class.