AL
Analyst accessPublic view · sign in
One event, not three confirmations.

Dependent coverage shares its primary source’s evidence group. VTP retains the articles without inflating independence.

The AI Governance Gap Is a Leadership Problem: Waiting Won’t Close It

Organizations are rushing to implement AI without fully grasping where its legal protections begin and end. The post The AI Governance Gap Is a Leadership Problem: Waiting Won’t Close It appeared first on SecurityWeek .

Separate evidence group
Original

SAP Patches Critical Code Injection, Memory Corruption Vulnerabilities

SAP released 28 new and two updated security notes, including four notes dealing with critical-severity bugs. The post SAP Patches Critical Code Injection, Memory Corruption Vulnerabilities appeared first on SecurityWeek .

CVE-2026-34265CVE-2026-44758CVE-2026-44772CVE-2026-58231
Separate evidence group
Original

US Water Systems Get Cyber Boost From New Senate Bill and ‘Water Watch Center’

The Water Watch Center launched at DEF CON aims to help under-resourced utilities protect their systems against hackers. The post US Water Systems Get Cyber Boost From New Senate Bill and ‘Water Watch Center’ appeared first on SecurityWeek .

Separate evidence group
Original

Mozilla updates GPG signing key for Firefox releases after exposure

Mozilla announced today that it updated the GPG key used to sign Firefox and Thunderbird releases after it was accidentally exposed on GitHub. [...]

Separate evidence group
Original

Vague Task, Total Access: When AI Delegation Becomes a Security Risk

AI agents can improvise beyond the intended scope of a task when they are given broad access to enterprise systems and data. Token Security explains why organizations need to define agent intent and continuously enforce permissions around what each agent was actually created to do. [...]

Separate evidence group
Original

OpenAI Launches GPT-5.6-Cyber with Reduced Safeguards for Exploit Development

OpenAI on Monday unveiled a new cybersecurity-focused model called GPT‑5.6‑Cyber that it said is focused on vulnerability research, penetration testing, and incident response. "Built on GPT‑5.6 Sol, it is trained to improve capabilities on several specialized cybersecurity tasks (e.g., finding zero-day vulnerabilities and developing exploit chains) and to reduce refusals for certain higher-risk

CVE-2026-15903
Separate evidence group
Original

DDoS attacks over 1 Tbps surged fivefold in the second quarter

Cloudflare says it mitigated more than 800 network-layer distributed denial-of-service (DDoS) attacks exceeding 1 Tbps in the second quarter of the year. [...]

Separate evidence group
Original

Rapid7 Analysis: Microsoft SharePoint JWT Token Authentication Bypass (CVE-2026-55040)

Overview On July 14, 2026, Rapid7 and Microsoft disclosed CVE-2026-55040, an authentication bypass vulnerability affecting Microsoft SharePoint. Today we are publishing a technical analysis of the vulnerability along with an accompanying proof-of-concept (PoC) script . Figure 1: The Rapid7 Labs PoC for CVE-2026-55040. ⠀ A remote unauthenticated attacker can leverage CVE-2026-55040 to bypass authentication on a vulnerable SharePoint server, and perform operations as a SharePoint site user or administrator. The vulnerability is due to several issues in the JWT token validation pipeline. Analysis The following technical analysis is based upon SharePoint Server Subscription Edition version 16.0.19725.20210 . A critical authentication bypass vulnerability exists in SharePoint Server Subscription Edition's JWT token validation pipeline. The root cause is a chain of four distinct weaknesses that, when combined, allow an unauthenticated remote attacker to forge a valid JWT and impersonate any SharePoint site user. The below analysis is based upon decompilation and code review of the Microsoft.SharePoint.IdentityModel module from a fully patched SharePoint Server Subscription Edition instance. The vulnerability resides in the SPJsonWebSecurityTokenHandlerV2 class and its base class SPJsonWebSecurityBaseTokenHandlerV2 , which together implement the token parsing and validation logic for Bearer service-to-service (S2S) tokens. SharePoint's S2S authentication uses a nested JWT structure: an outer token containing user identity claims, and an inner "actor token" embedded in the actortoken claim. The actor token represents the calling application and is expected to be cryptographically signed by a trusted certificate. The validation flow begins in SPApplicationAuthenticationModuleV2.TryExtractAndValidateToken() , which extracts the Bearer token from the Authorization header, parses it via SPJsonWebSecurityBaseTokenHandlerV2.ReadToken() , and then validates it via SPJsonWebSecurityTokenHandlerV2.ValidateToken() . The debugger call stack below shows the call stack at the time of calling ValidateToken . Microsoft.SharePoint.IdentityModel.dll!Microsoft.SharePoint.IdentityModel.SPJsonWebSecurityTokenHandlerV2.ValidateToken(System.IdentityModel.Tokens.SecurityToken token) (IL=0x01BC, Native=0x00007FFC730AA430+0x4A2) Microsoft.SharePoint.IdentityModel.dll!Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModuleV2.TryExtractAndValidateToken(System.Web.HttpContext httpContext, out Microsoft.SharePoint.IdentityModel.SPIncomingTokenContextV2 tokenContext, out Microsoft.SharePoint.IdentityModel.SPIdentityProofToken identityProofToken) (IL=???, Native=0x00007FFC730A2A70+0x9FB) Microsoft.SharePoint.IdentityModel.dll!Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModuleV2.ConstructIClaimsPrincipalAndSetThreadIdentity(System.Web.HttpApplication httpApplication, System.Web.HttpContext httpContext, Microsoft.SharePoint.IdentityModel.SPFederationAuthenticationModuleV2 fam, out string tokenType) (IL≈0x0041, Native=0x00007FFC730A1860+0xB2) Microsoft.SharePoint.IdentityModel.dll!Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModuleV2.AuthenticateRequest(object sender, System.EventArgs e) (IL≈0x0139, Native=0x00007FFC7196F9D0+0x3E4) System.Web.dll!System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() (IL=0x005D, Native=0x00007FFC71846AE0+0xD1) System.Web.dll!System.Web.HttpApplication.ExecuteStepImpl(System.Web.HttpApplication.IExecutionStep step) (IL=epilog, Native=0x00007FFC71846A00+0xB6) System.Web.dll!System.Web.HttpApplication.ExecuteStep(System.Web.HttpApplication.IExecutionStep step, ref bool completedSynchronously) (IL≈0x0015, Native=0x00007FFC71846640+0x5E) System.Web.dll!System.Web.HttpApplication.PipelineStepManager.ResumeSteps(System.Exception error) (IL≈0x027A, Native=0x00007FFC71842E00+0x77A) System.Web.dll!System.Web.HttpApplication.BeginProcessRequestNotifica

CVE-2026-55040
Separate evidence group
Original

CVE-2026-63520: Microsoft SharePoint Remote Code Execution (FIXED)

Overview Rapid7 Labs conducted a zero-day research project against Microsoft SharePoint, resulting in the discovery of two new vulnerabilities that, when chained together, achieve unauthenticated remote code execution (RCE) against a vulnerable SharePoint server. Today, both Rapid7 and Microsoft are disclosing the second vulnerability in this chain, the RCE vulnerability CVE-2026-63520. The first vulnerability in the chain, CVE-2026-55040, was disclosed by Rapid7 and Microsoft last month. Our full disclosure timeline for the exploit chain can be seen below in Figure 1. Figure 1: The road to disclosure. ⠀ CVE-2026-63520 affects all supported versions of Microsoft SharePoint, and certain versions of Microsoft Project Server and Microsoft Office Web Apps Server. For the purpose of our research, we focused solely on SharePoint. An attacker can leverage CVE-2026-63520 to execute arbitrary code on a vulnerable SharePoint server with the privileges of the SharePoint Site’s service account. The vulnerability is due to an unsafe .NET type instantiation issue within the Business Connectivity Services . CVE-2026-63520 has a CVSSv3.1 score of 8.1 (High) , and a Common Weakness Enumeration (CWE) of CWE-20: Improper Input Validation . While the severity of the RCE is described as high, chained together with CVE-2026-55040 it becomes part of a critical unauthenticated RCE exploit chain against SharePoint. The exploit chain was developed as an entry for this year's Pwn2Own Berlin hacking competition; while our entry was unsuccessful on the day of the competition, this research highlights Rapid7 Labs' continued effort to raise the bar in Vulnerability Intelligence and our commitment to the preemptive protection of our customers through original vulnerability research. Our research methodology focused on understanding how publicly available AI models can assist in the discovery of significant vulnerabilities against proprietary enterprise targets. Our results established that the rate of model advancement is significantly accelerating vulnerability research, model guidance from subject matter experts is a force multiplier, and complex proprietary targets are easily handled through agentic workflows. Rapid7 is hosting a webinar on Thursday August 13, 2026 to discuss the research and findings for CVE-2026-55040 and CVE-2026-63520. Please join Douglas McKee and Stephen Fewer to learn more about this body of work. Workflow For this research project we wanted to understand the capabilities and limits of publicly available LLMs circa January through to March of this year. We wanted to answer the question if an AI workflow could find and develop an unauthenticated RCE exploit against a hard target such as SharePoint. This research project concluded with the successful discovery and development of such a chain. To that end, the publicly available models at the beginning of this year were indeed capable. This is notable as the rate of model improvement from Q1 of 2026 through to today has been significant. Our team's later testing of the most recent frontier models confirms the significant increase in capabilities from that of the beginning of this year. Our primary conclusion from the SharePoint research project in Q1 is that an agent guided by a subject matter expert (SME) was crucial to keep moving the model and its work towards the end goal. Given our current experience of frontier model capabilities, the need for an SME to verify and guide a model is lessened, but the compounding impact an SME can bring remains. Our first sprint in January did not result in any significant findings, rather, this sprint helped us establish the workflow and tooling that proved most useful, scope out the extremely large attack surface, and integrate prior work into our process. We augmented the agentic work with manual source code review and reverse engineering to provide additional context and steering to the model. Our early results quickly indicated how a fully aut

CVE-2026-55040CVE-2026-63520
Separate evidence group
Original

CISA: Microsoft SharePoint flaw now exploited in ransomware attacks

CISA confirmed today that ransomware gangs have begun abusing a high-severity Microsoft SharePoint remote code execution vulnerability, which has been flagged as actively exploited since early July. [...]

CVE-2026-33825CVE-2026-45659
Separate evidence group
Original

A Malicious SIM Card Can Run Attacker Code Inside the Modems Behind Cellular IoT Devices

A malicious SIM card can order the device it sits in to run commands of the attacker's choosing. On the cellular modules built into electric-vehicle chargers, industrial routers, and car telematics units, that is enough to take the whole device over. Researchers at the University of Birmingham and the security firm Fuzzware tested 26 phones and cellular modules for the capability, found it

CVE-2021-31698CVE-2025-48618CVE-2026-57550
Separate evidence group
Original

Mozilla Revokes Firefox and Thunderbird Linux Signing Key After Key Lands in Private Repo

Mozilla has scrapped the cryptographic key behind Firefox and Thunderbird downloads for Linux after an unencrypted copy of it was committed by mistake to one of the company's own private code repositories. That key is how a user, or a Linux distribution packaging the browser, confirms a downloaded Firefox tarball came from Mozilla and was not tampered with. That decision carries a cost for

Separate evidence group
Original

Corma Raises $60 Million for Defensive Cybersecurity AI Model

Corma emerged from stealth with seed funding from Sequoia Capital, Khosla Ventures, and Coatue. The post Corma Raises $60 Million for Defensive Cybersecurity AI Model appeared first on SecurityWeek .

Separate evidence group
Original

Researchers Built a Fake Crypto Startup and Hired Three Suspected North Korean IT Workers

Security researchers invented a cryptocurrency startup, advertised developer jobs, and hired three people they believe were North Korean operatives. Every virtual machine the company issued was recording. The onboarding paperwork is the part hiring teams can use. The first hire claimed to live in Pasadena, Texas, then sent a California driver's license and a New York bank account. The

Separate evidence group
Original

Extension Banned for Stealing AI Chats Returns to Chrome Store, Resumes Malicious Activities

The extension amassed over 300,000 installs and a 4.6 rating before Google removed it for stealing data. The post Extension Banned for Stealing AI Chats Returns to Chrome Store, Resumes Malicious Activities appeared first on SecurityWeek .

Separate evidence group
Original

Cisco warns of high-severity ClamAV flaws with public exploits

Cisco warned of two high-severity vulnerabilities affecting the Secure Endpoint Connector that allow threat actors to crash the ClamAV scanning process in denial-of-service (DoS) attacks. [...]

CVE-2026-20337CVE-2026-20338
Separate evidence group
Original

Researchers Turn USB Auto-Install Into a Full SYSTEM Takeover on Windows 11

Windows Plug and Play can be abused to fetch signed vendor software for an emulated USB device and execute privileged installation components that researchers chained to SYSTEM access on a fully updated Windows 11 machine. The same PnP path can be triggered over Remote Desktop without physical hardware when supported Plug and Play or low-level USB redirection is enabled; Microsoft says that

Separate evidence group
Original

Malicious MCP Servers Can Split Instructions to Make AI Coding Agents Exfiltrate Secrets

A malicious tool server connected to an AI coding assistant can quietly walk off with SSH keys, environment secrets, source code, and customer data without ever sending one obviously harmful instruction. The trick can work even after a blunt version of the same theft is refused: split the request into fragments that each look routine, place them in channels the assistant already uses, and let

Separate evidence group
Original

Hacker Conversations: Marcus Hutchins and the Journey From the Gray Zone to Redemption

Marcus Hutchins doesn’t personally consider himself a hacker – but he accepts the epithet because it’s a widely used term for what he once did. The post Hacker Conversations: Marcus Hutchins and the Journey From the Gray Zone to Redemption appeared first on SecurityWeek .

Separate evidence group
Original

US and South Korea warn of Gunra ransomware targeting govt agencies

U.S. federal agencies and South Korea's National Policy Agency warned government and critical infrastructure organizations worldwide to secure their systems against Gunra ransomware attacks. [...]

CVE-2024-55591CVE-2025-24472
Separate evidence group
Original

OpenAI Unveils New Cybersecurity Model GPT-5.6-Cyber

OpenAI has also announced the expansion of its Daybreak platform to give more organizations access to its AI. The post OpenAI Unveils New Cybersecurity Model GPT-5.6-Cyber appeared first on SecurityWeek .

Separate evidence group
Original

Gunra Ransomware Exploits Fortinet and Schneider Electric Flaws to Breach Networks

Cybersecurity and intelligence agencies from South Korea and the U.S. warned of Gunra ransomware attacks targeting critical infrastructure sectors and organizations across the world. Targets of these attacks include healthcare and public health, financial services, government services and facilities, and professional and nonprofit services. "Gunra is another variant in the ongoing trend of

CVE-2024-5559CVE-2025-24472
Separate evidence group
Original

Hackers Breach Polish Power Plant Controls via Private Cellular Network and Shut Turbine

Attackers shut down a steam turbine and the process-water treatment system at a Polish combined heat and power plant by coming in over the private cellular network the local grid operator uses to reach remote equipment. The plant supplies heat to roughly 50,000 residents. Recovery began at about 7:30 a.m. while the intruders were still active inside the network, and customers lost neither heat

CVE-2023-32349CVE-2023-32350
Separate evidence group
Original

Mozilla Issues New Firefox GPG Key Following Exposure

The previous GPG signing subkey was inadvertently added to a GitHub repository and Mozilla decided to revoke it. The post Mozilla Issues New Firefox GPG Key Following Exposure appeared first on SecurityWeek .

Separate evidence group
Original

BdThemes Supply Chain Attack Poisons JSON to Create Rogue WordPress Admins

Cybersecurity researchers have warned of a supply chain compromise impacting WordPress plugin vendor BdThemes, prompting the content management systems (CMS) platform's plugins team to temporarily disable their downloads. "Unlike traditional software supply chain attacks, zero source code files were modified within the official WordPress.org repository," Wordfence researcher Paolo Tresso said.

CVE-2026-18072CVE-2026-64638
Separate evidence group
Original

Multiples vulnérabilités dans Postfix (11 août 2026)

De multiples vulnérabilités ont été découvertes dans Postfix. Certaines d'entre elles permettent à un attaquant de provoquer un déni de service à distance, un contournement de la politique de sécurité et un problème de sécurité non spécifié par l'éditeur.

Separate evidence group
Original

Vulnérabilité dans CPython (11 août 2026)

Une vulnérabilité a été découverte dans CPython. Elle permet à un attaquant de provoquer un déni de service à distance.

CVE-2026-18503
Separate evidence group
Original

Multiples vulnérabilités dans SPIP (11 août 2026)

De multiples vulnérabilités ont été découvertes dans SPIP. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, une injection SQL (SQLi) et une falsification de requêtes côté serveur (SSRF).

Separate evidence group
Original

Vulnérabilité dans Docker (11 août 2026)

Une vulnérabilité a été découverte dans Docker. Elle permet à un attaquant de provoquer une atteinte à l'intégrité des données.

CVE-2026-17106
Separate evidence group
Original

Multiples vulnérabilités dans OpenSSH (11 août 2026)

De multiples vulnérabilités ont été découvertes dans OpenSSH. Elles permettent à un attaquant de provoquer un problème de sécurité non spécifié par l'éditeur.

Separate evidence group
Original

Multiples vulnérabilités dans les produits SAP (11 août 2026)

De multiples vulnérabilités ont été découvertes dans les produits SAP. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, une élévation de privilèges et une atteinte à la confidentialité des données.

CVE-2025-42947CVE-2025-58057CVE-2026-33871CVE-2026-34265CVE-2026-34480CVE-2026-40130CVE-2026-42945CVE-2026-44758CVE-2026-44762CVE-2026-44763CVE-2026-44764CVE-2026-44765CVE-2026-44772CVE-2026-5598CVE-2026-58230CVE-2026-58231CVE-2026-58233CVE-2026-58235CVE-2026-58236CVE-2026-58237CVE-2026-58238CVE-2026-58239CVE-2026-58241CVE-2026-58243CVE-2026-58244CVE-2026-58245CVE-2026-58247CVE-2026-58248CVE-2026-66760CVE-2026-66761CVE-2026-66763CVE-2026-66764CVE-2026-66770CVE-2026-66771CVE-2026-66772CVE-2026-66773CVE-2026-66774CVE-2026-66775CVE-2026-66776CVE-2026-66777CVE-2026-66778CVE-2026-66779
Separate evidence group
Original

Hackers breached a small Polish energy plant via private APN last year

Hackers breached a heat-and-power plant facility in Poland, which supplies heat to about 50,000 residents, using a private APN (Access Point Name) to access an OT (Operational Technology) network. [...]

Separate evidence group
Original

'GhostJacking' Exposes Identity Governance Gaps in AI Agents

New research shows how attackers can use security alerts and blocked events to manipulate and hijack AI agents.

Separate evidence group
Original

Multistate Water System Attacks Widen, Iran Suspected

Attacks targeting water systems just keep flowing across a dozen states, against ill-secured, Internet-exposed PLCs.

Separate evidence group
Original

BdThemes plugins supply-chain hack creates rogue WordPress admins

A threat actor compromised the upstream infrastructure of BdThemes, a developer of premium WordPress web-design tools, and modified a remote JSON feed delivered to administrators' browsers to create rogue admin accounts. [...]

Separate evidence group
Original

Metabase SQL Zero-Day Attacks Could Have Wide Blast Radius

The maximum-severity vulnerability, which still has no CVE, allows malicious, remote administrator access to the business-analytics platform and its downstream users.

Separate evidence group
Original

OpenAI releases ChatGPT 5.6 Cyber, but it's only for approved users

OpenAI has developed a new model called "GPT 5.6 Cyber," designed for vulnerability research, penetration testing, incident response, and remediation. [...]

Separate evidence group
Original

The Patch Gap: Why Defenders Need to Think in Chains, Not Checklists

It's time to turn from CVSS-backed patching to choke-point patching focused on breaking chains to critical assets.

Separate evidence group
Original

New StormEncryptor ransomware used by former Medusa affiliate

A financially motivated threat actor previously associated with the Medusa ransomware operation is now deploying a new ransomware strain called StormEncryptor. [...]

CVE-2026-18577
Separate evidence group
Original

Shipping 10–50× More Code? Watch This Webinar on Securing AI-Speed Development

AI is helping development teams produce far more code, far faster. But security teams still have to review vulnerabilities, manage dependencies, prioritize fixes, and control risk at human speed. When software output jumps 10 to 50 times, the problem is no longer just finding vulnerabilities. It is keeping security from becoming the bottleneck, or worse, losing control of what gets shipped.

Separate evidence group
Original

Coruna, DarkSword iOS Exploits Proliferate Globally

Sophisticated iPhone exploit chains previously limited to nation-states are spreading far and wide to organized cybercrime groups.

Separate evidence group
Original

China-Linked Hackers Deploy New StormEncryptor Ransomware, Likely via N-central Flaw

Microsoft has disclosed that Storm-1175, a financially motivated threat actor linked to China, has deployed a previously undocumented ransomware strain called StormEncryptor. The use of StormEncryptor marks a shift from the adversary's previous use of Medusa ransomware, the Microsoft Threat Intelligence Team said. "StormEncryptor is written in C++ and appends the file name extension .encrypted

CVE-2023-37679CVE-2023-43208CVE-2023-48788CVE-2024-1708CVE-2024-1709CVE-2024-27198CVE-2024-27199CVE-2025-10035CVE-2026-18556CVE-2026-18577
Separate evidence group
Original

Outdated Cybercrime Laws Put Security Researchers at Risk

A public policy expert mapped global cybercrime laws to develop a five-point framework for protecting ethical hackers and good-faith security research.

Separate evidence group
Original

ClamAV Vulnerabilities Affecting Cisco Products: August 2026

Multiple vulnerabilities in ClamAV could allow a remote attacker to cause a denial of service (DoS) condition, interrupting scanning operations.  For more information about these vulnerabilities, see the Details section of this advisory. For additional information on these vulnerabilities in ClamAV, see the ClamAV blog . Cisco plans to release software updates that address these vulnerabilities in affected Cisco platforms. There are no workarounds that address these vulnerabilities. Notes: The Security Impact Rating (SIR) for these vulnerabilities is High for Windows-based platforms only because those platforms run the ClamAV scanning process in a privileged security context. The platforms that are highly impacted include Cisco Secure Endpoint Connector for Windows. The SIR for these vulnerabilities is Medium on other platforms, including Linux and Mac platforms, because those platforms run the ClamAV scanning process in a lower-privileged security context. The affected platforms include Secure Endpoint Connector for Linux and Mac. Cisco Secure Endpoint Private Cloud itself is not impacted by these vulnerabilities. However, the Cisco Secure Endpoint Connector software that is distributed from the device is impacted. This advisory is available at the following link: https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-clamav-WuuvVd26 <br/>Security Impact Rating: High <br/>CVE: CVE-2026-20337,CVE-2026-20338,CVE-2026-20339,CVE-2026-20345,CVE-2026-20346,CVE-2026-20347,CVE-2026-20348

CVE-2026-20337CVE-2026-20338CVE-2026-20339CVE-2026-20345CVE-2026-20346CVE-2026-20347CVE-2026-20348
Separate evidence group
Original

Sherlock Holmes Was the 'OG' Social Engineer

The crime solver wore disguises, spied on targets, and built intelligence networks long before modern-day tactics emerged. He has lessons for today's ethical- and nonethical-hat hackers.

Separate evidence group
Original

⚡ Weekly Recap: AI Goes Rogue, Metabase 0-Day, MCP Supply-Chain Attacks, and Router Backdoors

A lot of security problems still begin with someone doing a completely normal thing. Cloning a repo. Answering a call. Leaving a box exposed. Trusting the default. That pretty much covers the mood this week. Old bugs are back, supply chains are getting stranger, and some exploit paths are so short you wonder what was supposed to stop them in the first place. That’s only part of it. Here’s

CVE-2013-3821CVE-2025-8943CVE-2026-14869CVE-2026-15307CVE-2026-16496CVE-2026-16498CVE-2026-17583CVE-2026-18236CVE-2026-18497CVE-2026-18556CVE-2026-18577CVE-2026-18830CVE-2026-19137CVE-2026-19149CVE-2026-19154CVE-2026-19157CVE-2026-19170CVE-2026-19172CVE-2026-20267CVE-2026-20272CVE-2026-20303CVE-2026-20304CVE-2026-20310CVE-2026-34348CVE-2026-41679CVE-2026-50481CVE-2026-50515CVE-2026-56162CVE-2026-56181CVE-2026-58048CVE-2026-58072CVE-2026-58073CVE-2026-59115CVE-2026-59774CVE-2026-62830CVE-2026-63508CVE-2026-63913CVE-2026-64531CVE-2026-64561CVE-2026-64564CVE-2026-64638CVE-2026-64650CVE-2026-64651CVE-2026-65400CVE-2026-65667CVE-2026-8496
Separate evidence group
Original

CISA: SonicWall SMA1000 flaws now exploited by ransomware gangs

CISA has confirmed that ransomware gangs have begun exploiting two recently patched SonicWall SMA1000 vulnerabilities, including a maximum-severity server-side request forgery (SSRF) flaw. [...]

CVE-2025-40602CVE-2026-15409CVE-2026-15410
Separate evidence group
Original

OpenAI’s Upcoming Astra Model Raises Autonomous Cyberattack Concerns

The current GPT-5.6-Sol has been assigned a ‘high’ cybersecurity threshold, but Astra could reach the maximum ‘critical’ threshold. The post OpenAI’s Upcoming Astra Model Raises Autonomous Cyberattack Concerns appeared first on SecurityWeek .

Separate evidence group
Original

Stealthium Targets Security Blind Spots in AI Accelerators and Neo-Clouds

The startup analyzes subtle telemetry signals to detect attacks that traditional security tools cannot see inside accelerator-powered AI infrastructure. The post Stealthium Targets Security Blind Spots in AI Accelerators and Neo-Clouds appeared first on SecurityWeek .

Separate evidence group
Original

Cisco Warns of High-Severity ClamAV Vulnerabilities With Public PoC

Remote, unauthenticated attackers could exploit the bugs to cause a denial-of-service (DoS) condition. The post Cisco Warns of High-Severity ClamAV Vulnerabilities With Public PoC appeared first on SecurityWeek .

CVE-2026-20337CVE-2026-20338CVE-2026-20339CVE-2026-20345CVE-2026-20348
Separate evidence group
Original

When Credentials Are No Longer Enough: Device Trust in the AI Era

AI is making phishing, credential theft, and social engineering faster and more efficient, while traditional trust signals such as passwords, MFA, IP reputation, and geolocation become easier to bypass. Specops explains why organizations are increasingly adding device trust to their Zero Trust strategies. [...]

Separate evidence group
Original

Kimsuky Builds Offline AI Stack to Boost Phishing and Automate Malware Development

North Korea's state hackers are no longer content to type prompts into public chatbots. One of the country's main espionage groups has begun running artificial intelligence (AI) offline on its own servers, connecting document-search tools to files in its possession, and collecting the software parts needed to build AI into its malware. South Korean security firm Genians says it uncovered the

Separate evidence group
Original

‘Ghostjacking’ Attack Uses Poisoned Logs to Turn AI Agents Bad

An AI agent executes instructions that an attacker has planted in the log or alert that records a blocked request word for word. The post ‘Ghostjacking’ Attack Uses Poisoned Logs to Turn AI Agents Bad appeared first on SecurityWeek .

Separate evidence group
Original

Member of The Com sent to prison for blackmail, sextortion

A member of "The Com," a loose-knit online cybercrime collective that targets children and teenagers, has been sentenced to two years in prison for blackmail and sextortion offenses against nearly 120 victims worldwide. [...]

Separate evidence group
Original

New Passkey Attacks Can Recover Synced Private Keys or Bypass Phishing-Resistant MFA

Three separate research efforts last week demonstrated ways to defeat passkey protections without breaking the cryptography they rest on. Passkeys are designed to replace reusable passwords and resist phishing. The attacks instead reused signed authentication material that Windows had exposed, abused a cloud-synced passkey system from malware already on the victim's machine, and used a 

CVE-2026-34348
Separate evidence group
Original

LexisNexis shuts down services after suspicious activity on servers

LexisNexis took its Diligence, Metabase API, and Newsdesk services offline as part of its response to unusual activity on servers hosted and managed by an unnamed third-party vendor. [...]

Separate evidence group
Original

Valve notifies Steam hardware customers of a data breach

Video game publisher and digital distribution giant Valve is notifying Steam hardware customers in Europe that hackers stole their data after hacking its shipping partner, CEVA Logistics. [...]

Separate evidence group
Original

TrueConf Server Flaws Exploited to Replace Client Installers with PhantomCore

The threat actor known as Head Mare has been observed weaponizing security flaws in unpatched TrueConf servers once again in attacks targeting Russian companies spanning instrumentation, electronics, transport, energy, IT, and software development sectors. Russian cybersecurity vendor Kaspersky said it detected the attacks in July 2026. The activity involves exploiting a vulnerability chain

CVE-2026-3502
Separate evidence group
Original

Solidity Pro VS Code Extensions Steal Crypto Wallets, API Keys, and Credentials

Cybersecurity researchers have flagged a malicious Microsoft Visual Studio Code (VS Code) extension named Solidity Pro ("solidity-pro") that has been observed delivering a browser wallet and credential stealer. The names of the extensions are below - helper-beeps.solidity-pro web3devtoolsx.solidity-pro Although neither of the extensions is now available on Open VSX, the GitHub repository

Separate evidence group
Original

OpenAI's Next AI Model Astra Shows Cyber Performance Strong Enough to Trigger Pause

OpenAI has announced that it's pausing some "internal activities" involving its upcoming artificial intelligence (AI) model Astra after an internal evaluation found it had made significant advancements in agentic coding and cybersecurity. In response to the discovery, the AI upstart said it's implementing security controls for higher-capability models and associated activities, such as isolated

Separate evidence group
Original

Vulnérabilité dans SonicWall Global VPN Client (10 août 2026)

Une vulnérabilité a été découverte dans SonicWall Global VPN Client. Elle permet à un attaquant de provoquer un déni de service.

CVE-2026-66151
Separate evidence group
Original

Multiples vulnérabilités dans Roundcube (10 août 2026)

De multiples vulnérabilités ont été découvertes dans Roundcube. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, une atteinte à la confidentialité des données et une falsification de requêtes côté serveur (SSRF).

Separate evidence group
Original

Vulnérabilité dans Synology Assistant (10 août 2026)

Une vulnérabilité a été découverte dans Synology Assistant. Elle permet à un attaquant de provoquer une atteinte à la confidentialité des données, une atteinte à l'intégrité des données et un déni de service.

CVE-2026-4793
Separate evidence group
Original

Multiples vulnérabilités dans HPE Aruba Networking Private 5G Core (10 août 2026)

De multiples vulnérabilités ont été découvertes dans HPE Aruba Networking Private 5G Core. Elles permettent à un attaquant de provoquer une élévation de privilèges et un contournement de la politique de sécurité.

CVE-2026-33377CVE-2026-54763
Separate evidence group
Original

Multiples vulnérabilités dans VMware Tanzu Greenplum (10 août 2026)

De multiples vulnérabilités ont été découvertes dans VMware Tanzu Greenplum. Elles permettent à un attaquant de provoquer un problème de sécurité non spécifié par l'éditeur.

CVE-2018-11798CVE-2019-0205CVE-2020-13949CVE-2026-43869CVE-2026-45205CVE-2026-54291CVE-2026-55831CVE-2026-55833CVE-2026-56745CVE-2026-56746CVE-2026-56819CVE-2026-59898CVE-2026-59899CVE-2026-59900CVE-2026-59901CVE-2026-59921
Separate evidence group
Original

Multiples vulnérabilités dans ClamAV (10 août 2026)

De multiples vulnérabilités ont été découvertes dans ClamAV. Certaines d'entre elles permettent à un attaquant de provoquer une atteinte à la confidentialité des données, un déni de service et un problème de sécurité non spécifié par l'éditeur.

CVE-2025-8088CVE-2026-20337CVE-2026-20338CVE-2026-20339CVE-2026-20345CVE-2026-20346CVE-2026-20347CVE-2026-20348
Separate evidence group
Original

Atlassian Rovo Can Be Tricked Into Sending Jira and Confluence Data to Attackers

Attacker-controlled instructions can make Atlassian's Rovo assistant collect Jira or Confluence data that a signed-in user can access, then send it to an outside server. Two security firms found that behavior independently, by different routes. Only one of those routes is confirmed closed. PromptArmor, an AI security firm, hid the instructions in content Rovo reads. It said an uploaded file was

Separate evidence group
Original

New CSS Attacks Can Break Webmail Defenses to Steal Passwords and Tokens

New research shows content inside an email can escape its message boundary and interfere with the webmail interface. Across attack chains spanning Outlook, Gmail, Fastmail, Proton Mail, Yahoo Mail, and AOL Mail, the techniques can capture passwords, take over third-party accounts, leak tokens, hijack trusted UI actions, and manipulate AI tools that read email. PortSwigger researcher Gareth

Separate evidence group
Original

Metabase Zero-Day Exploited in Wild Allows Admin Access Without Authentication

Metabase has warned that a maximum-severity security flaw impacting its business intelligence and data visualization software package has been exploited in the wild as a zero-day. The vulnerability (CVSS score: 10.0), which does not carry a CVE identifier, allows an unauthenticated remote attacker to inject arbitrary SQL into the Metabase application database, enabling them to gain

CVE-2023-38646
Separate evidence group
Original

N-able Issues N-central Hotfix 2 as Attackers Reach Managed Systems and Persist

N-able has released a fresh round of hotfixes for N‑central as part of its investigation into ongoing exploitation of a recently disclosed security flaw in the Remote Monitoring and Management (RMM) product. "We are proactively expanding protections in response to ongoing monitoring of threat actors as they evolve their attack techniques," the company said. "This is not a duplicate of our

CVE-2026-18556CVE-2026-18577
Separate evidence group
Original

Progress Kemp LoadMaster Flaw Hits CISA KEV After 792 Reported Exploit Attempts

The U.S. Cybersecurity and Infrastructure Security Agency (CISA) on Friday added a critical-severity security flaw impacting Progress Kemp LoadMaster to its Known Exploited Vulnerabilities (KEV) catalog, following reports of active exploitation in the wild. The vulnerability, tracked as CVE-2026-8037 (CVSS score: 9.6), is a command injection flaw that could be weaponized to achieve arbitrary

CVE-2026-8037
Separate evidence group
Original

Cisco Catalyst SD-WAN Manager Information Disclosure Vulnerability

A vulnerability in the web-based management interface of Cisco Catalyst SD-WAN Manager could allow an authenticated, remote attacker to view sensitive information in clear text on an affected system. This vulnerability is due to insufficient access control enforcement for specific template types that are not included in the encryption allowlist. A low-privileged attacker could exploit this vulnerability by viewing logs on the local system or on a remote logging server. A successful exploit could allow the attacker to view sensitive authentication credentials, which could lead to further compromise of network infrastructure and connected services. Cisco has released software updates that address this vulnerability. There are no workarounds that address this vulnerability. This advisory is available at the following link: https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-sdwan-infodis-SPuJBDCe <br/>Security Impact Rating: Medium <br/>CVE: CVE-2026-20294

CVE-2026-20294
Separate evidence group
Original

Nearly 800 Malicious npm Packages Deliver Cross-Platform RAT and Infostealer

A cluster of nearly 800 malicious packages has been published to the npm registry as part of a new campaign designed to deliver cross-platform malware targeting Windows, Mac, and Linux systems. "These packages appear to use AI slop squatted, or randomly generated typo-squatting package names, but all of them deliver a powerful RAT and infostealer payload," OpenSourceMalware researcher Paul

Separate evidence group
Original

ClickFix Attacks Deliver macOS Stealer That Can Drain Crypto Wallets

ClickFix-style attacks are being used to deliver a Go-based malware capable of stealing cryptocurrency assets, as well as browser-stored passwords, Apple iCloud Keychain data, and cached credentials. The macOS-focused infection chain is designed to deliver a shell script that profiles the host and then fetches a macOS malware payload that's compatible with the computer's CPU architecture. "

Separate evidence group
Original

UNC6671 Vishing Attacks Target Personal Phones to Steal SaaS Data

A recent wave of cyber attacks targeting financial services, private equity, and professional services has been attributed to a data extortion group known as UNC6671. "UNC6671 continues to rely on voice phishing (vishing) to target enterprise employees, posing as IT help desk staff facilitating mandatory, urgent security migrations. Significantly, the threat actor often contacts employees via

Separate evidence group
Original

AI-Generated Patches Fail Half the Time

A study of more than 6,000 patches found that even working patches can introduce new bugs, break something else, or are open to bypass.

Separate evidence group
Original

Rapid7 Analysis: Unauthenticated Remote Code Execution in JetBrains TeamCity (CVE-2026-63077)

Overview On July 27, 2026, JetBrains published a security advisory for CVE-2026-63077 , a critical unsafe deserialization vulnerability affecting JetBrains TeamCity . An attacker who can reach a TeamCity server over HTTP or HTTPS can exploit the agent polling protocol without credentials and execute operating system commands with the privileges of the TeamCity server process. JetBrains reported no known active exploitation when it disclosed the vulnerability. However, on August 5, 2026, CISA added CVE-2026-63077 to its Known Exploited Vulnerabilities (KEV) catalog, confirming exploitation in the wild. Our analysis finds that a vulnerable TeamCity server creates a permissive XStream allowlist. This allowlist is intended to restrict which Java classes can be deserialized when servicing unauthenticated agent requests. However, this allowlist incorrectly adds TeamCity protocol classes without removing XStream's existing default permissions. This introduces an unsafe deserialization issue. A patched TeamCity server remediates this by adding NoTypePermission.NONE before the TeamCity allowlist, which removes the default permissions and makes the allowlist exclusive. Rapid7 Labs has verified that the patch successfully remediates the exploit described in this analysis. A proof-of-concept script for CVE-2026-63077 can be found here . Analysis Our analysis compares a vulnerable TeamCity version 2026.1.2 against a patched version 2026.1.3 . TeamCity uses a central server to coordinate builds and separate build agents to run them. An agent can communicate with the server through the agent polling protocol: it registers, asks the server for its next command, and reports whether that command succeeded or failed. The endpoints under /app/agents/v1 support this agent communication channel rather than the TeamCity web interface or REST API. A TeamCity-AgentSessionId HTTP header value identifies a polling connection, but it does not mean that either a user or agent has authenticated to TeamCity, as access to many agent endpoints remains unauthenticated. XStream is a Java library that converts object graphs to XML and reconstructs those graphs from XML. An object graph can contain nested objects, collection entries, private fields, and references to an object that appeared earlier in the document. XStream aliases give Java types shorter XML names. For example, <linked-hash-map> is XStream's alias for java.util.LinkedHashMap . Nested element names and class attributes select other concrete Java types, while reference attributes point back to objects that XStream has already constructed. Converters and reflection-based code then allocate the selected types and populate their fields. Patch diff The class jetbrains.buildServer.messages.XStreamHolder is TeamCity's wrapper for creating and configuring XStream instances. TeamCity 2026.1.2 creates an instance of XStreamHolder , configures it, and then calls setupSecurityIfNeeded() . If the TeamCity allowlists contain entries, this method adds those entries to the permissions that XStream already installed: // ./webapps/ROOT/WEB-INF/lib/messages.jar package jetbrains.buildServer.messages; public class XStreamHolder { // ... private void setupSecurityIfNeeded(XStreamWrapper xStream) { if (this.myAdditionalClassesWhiteList.isEmpty() && OUR_STATIC_CLASSES_WHITE_LIST.isEmpty()) { XStreamHolder.setupDefaultSecurityOldWay(xStream); return; } xStream.allowTypes(OUR_STATIC_CLASSES_WHITE_LIST.keySet() .toArray(new String[0])); // <--- [1] xStream.allowTypes(this.myAdditionalClassesWhiteList .toArray(new String[0])); // <--- [2] } The calls at [1] and [2] do not start from an empty permission set. The bundled XStream 1.4.20.3 constructor has already called setupSecurity() , which permits several broad type hierarchies, including Map and Throwable : // ./webapps/ROOT/WEB-INF/lib/xstream.jar package com.thoughtworks.xstream; public class XStream { // ... protected void setupSecurity() { if (this.security

CVE-2026-63077
Separate evidence group
Original

New WordPress Pre-Auth XSS Could Lead to PHP Code Execution - Patch ASAP

WordPress has fixed a pre-authentication reflected cross-site scripting (XSS) flaw in its login screen that affects every version of the content management system. pwn.ai demonstrated how the flaw can be chained into PHP code execution on the server when a logged-in administrator interacts with an attacker-controlled page. Tracked as CVE-2026-64638 (CVSS score: 8.9), the high-severity

CVE-2026-64638
Separate evidence group
Original

Growing Up The Hard Way

Open Source had a great childhood. For two decades it got to be a kid. It ran around barefoot, gave everything away, trusted strangers, and never once thought about who was watching. It ran the kind of lemonade stand that took IOUs from anyone who wandered up — take what you need, pay me back whenever, no need to leave a name. It was idyllic. It was also, in retrospect, a little feral. Then,

Separate evidence group
Original

18-Year-Old Linux SCTP Flaw Could Let Local Users Gain Root and Escape Containers

A use-after-free bug in Linux's SCTP networking code can be turned into full root on a host, and Tencent researchers say they used it to escape a container and reach the machine underneath. The flaw has existed since 2008. The fix already shipped: stable kernels 7.1.6, 6.18.42, 6.12.101 and 6.6.148, released August 3, close it. Anyone running an older kernel with SCTP reachable should update.

CVE-2026-64564
Separate evidence group
Original

New NatJack Attacks Hijack TCP Sessions and Spoof DNS by Manipulating NAT Tables

Security researcher Malcolm Stagg has disclosed a new attack class called NatJack that manipulates network address translation (NAT) connection state to hijack active TCP sessions, spoof DNS responses, expose mapped ports, and exhaust NAT tables. Presented at Black Hat USA 2026, the research found affected behavior across independently developed implementations, including Windows and

CVE-2026-56181CVE-2026-63913
Separate evidence group
Original

Microsoft 365 AitM Phishing Hijacks Accounts to Collect Payroll and Finance Emails

Cybersecurity researchers have called attention to an active "widespread email-driven phishing campaign" that employs adversary-in-the-middle (AitM) techniques to take control of Microsoft 365 accounts with an aim to identify key personnel involved in financial workflows and gather related email. "The campaign uses residential proxies to disguise malicious sign-ins as ordinary consumer traffic,

Separate evidence group
Original

AI-Assisted HTTP Terminator Finds Novel HTTP Desync Techniques and Apache Zero-Day

PortSwigger says HTTP Terminator, an artificial intelligence (AI)-assisted research system built by James Kettle, generated and proved new HTTP desynchronization techniques after exploring 30,000 candidate desync vectors. PortSwigger said a separate human-guided discovery cascade also exposed a zero-day in Apache Traffic Server. Kettle said HTTP Terminator tested 30,000 websites where

CVE-2026-63078
Separate evidence group
Original

Malware Can Abuse Windows Hello for Business Keys for Persistent Entra ID Access

Entra ID researcher Dirk-jan Mollema demonstrated that malware already running in a signed-in Windows session can silently use the victim's Windows Hello for Business key to authenticate to Microsoft Entra ID. The attacker can then establish longer-term cloud access, register a device it controls, obtain a Primary Refresh Token (PRT), and add further authentication methods where tenant policies

Separate evidence group
Original

Claude Code and Gemini CLI Flaws Let a GitHub Issue Reach CI Workflow Secrets

A GitHub issue opened by an account with no repository privileges was enough to execute code on the CI runners behind Anthropic's and Google's own coding-agent repositories. On OpenAI's, it was enough to hijack the next agent run. Novee Security ran the attack against each vendor's agent in the configuration that the vendor ships by default, and presented the work at Black Hat USA on August 5.

CVE-2026-12537CVE-2026-54316
Separate evidence group
Original

TeamPCP Linked To Redis Attacks Dating Back To 2020 And Later Supply Chain Campaign

A new analysis has uncovered that the threat actor tracked as TeamPCP has been active on the cybercrime scene as far back as 2020, indicating the group has been compromising internet-facing infrastructure for years before training their sights on the software supply chain. "The connection is supported by overlapping domains, malware deployment paths, staging techniques, backend infrastructure,

Separate evidence group
Original

Multiples vulnérabilités dans Progress Telerik (07 août 2026)

De multiples vulnérabilités ont été découvertes dans Progress Telerik. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, un déni de service à distance et une atteinte à la confidentialité des données.

CVE-2026-13181CVE-2026-13182CVE-2026-13183CVE-2026-13184CVE-2026-13185CVE-2026-13186CVE-2026-13187CVE-2026-13188CVE-2026-13189CVE-2026-13190CVE-2026-13192CVE-2026-14865CVE-2026-14932
Separate evidence group
Original

Multiples vulnérabilités dans Google Chrome (07 août 2026)

De multiples vulnérabilités ont été découvertes dans Google Chrome. Elles permettent à un attaquant de provoquer un problème de sécurité non spécifié par l'éditeur.

CVE-2026-19137CVE-2026-19138CVE-2026-19139CVE-2026-19140CVE-2026-19141CVE-2026-19142CVE-2026-19143CVE-2026-19144CVE-2026-19145CVE-2026-19146CVE-2026-19147CVE-2026-19148CVE-2026-19149CVE-2026-19150CVE-2026-19151CVE-2026-19152CVE-2026-19153CVE-2026-19154CVE-2026-19155CVE-2026-19156CVE-2026-19157CVE-2026-19158CVE-2026-19159CVE-2026-19160CVE-2026-19161CVE-2026-19162CVE-2026-19163CVE-2026-19164CVE-2026-19165CVE-2026-19166CVE-2026-19167CVE-2026-19168CVE-2026-19169CVE-2026-19170CVE-2026-19171CVE-2026-19172CVE-2026-19173CVE-2026-19174CVE-2026-19175CVE-2026-19176CVE-2026-19177
Separate evidence group
Original

Vulnérabilité dans Apple macOS (07 août 2026)

Une vulnérabilité a été découverte dans Apple macOS. Elle permet à un attaquant de provoquer un contournement de la politique de sécurité.

CVE-2026-65400
Separate evidence group
Original

Multiples vulnérabilités dans le noyau Linux de Debian (07 août 2026)

De multiples vulnérabilités ont été découvertes dans le noyau Linux de Debian. Elles permettent à un attaquant de provoquer une élévation de privilèges, une atteinte à l'intégrité des données et un déni de service.

CVE-2026-45944CVE-2026-53005CVE-2026-53260CVE-2026-53365CVE-2026-63970CVE-2026-64192CVE-2026-64206CVE-2026-64227CVE-2026-64286CVE-2026-64287CVE-2026-64307CVE-2026-64341CVE-2026-64352CVE-2026-64361CVE-2026-64363CVE-2026-64364CVE-2026-64369CVE-2026-64371CVE-2026-64375CVE-2026-64390CVE-2026-64401CVE-2026-64405CVE-2026-64413CVE-2026-64416CVE-2026-64421CVE-2026-64428CVE-2026-64434CVE-2026-64438CVE-2026-64441CVE-2026-64461CVE-2026-64462CVE-2026-64472CVE-2026-64481CVE-2026-64488CVE-2026-64493CVE-2026-64507CVE-2026-64508CVE-2026-64509CVE-2026-64510CVE-2026-64530CVE-2026-64531CVE-2026-64532CVE-2026-64533CVE-2026-64534CVE-2026-64535CVE-2026-64537CVE-2026-64538CVE-2026-64539CVE-2026-64540CVE-2026-64541CVE-2026-64542CVE-2026-64543CVE-2026-64544CVE-2026-64545CVE-2026-64546CVE-2026-64547CVE-2026-64548CVE-2026-64549CVE-2026-64550CVE-2026-64551CVE-2026-64552CVE-2026-64553CVE-2026-64554CVE-2026-64555CVE-2026-64557CVE-2026-64558CVE-2026-64559CVE-2026-64560
Separate evidence group
Original

Multiples vulnérabilités dans le noyau Linux de Debian LTS (07 août 2026)

De multiples vulnérabilités ont été découvertes dans le noyau Linux de Debian LTS. Elles permettent à un attaquant de provoquer une élévation de privilèges, une atteinte à la confidentialité des données et un déni de service.

CVE-2022-49803CVE-2022-50114CVE-2023-52494CVE-2024-36013CVE-2025-23131CVE-2025-39931CVE-2025-40196CVE-2026-23204CVE-2026-31451CVE-2026-31610CVE-2026-31755CVE-2026-43216CVE-2026-43219CVE-2026-43499CVE-2026-46116CVE-2026-46135CVE-2026-46252CVE-2026-46331CVE-2026-52942CVE-2026-53138CVE-2026-53157CVE-2026-53158CVE-2026-53159CVE-2026-53167CVE-2026-53177CVE-2026-53325CVE-2026-53329CVE-2026-53332CVE-2026-53381CVE-2026-53382CVE-2026-53385CVE-2026-53392CVE-2026-53393CVE-2026-53397CVE-2026-53398CVE-2026-53399CVE-2026-53400CVE-2026-53402CVE-2026-53403CVE-2026-63794CVE-2026-63796CVE-2026-63797CVE-2026-63798CVE-2026-63800CVE-2026-63801CVE-2026-63803CVE-2026-63806CVE-2026-63808CVE-2026-63809CVE-2026-63810CVE-2026-63814CVE-2026-63815CVE-2026-63818CVE-2026-63822CVE-2026-63823CVE-2026-63824CVE-2026-63827CVE-2026-63828CVE-2026-63829CVE-2026-63830CVE-2026-63831CVE-2026-63834CVE-2026-63835CVE-2026-63836CVE-2026-64187CVE-2026-64188CVE-2026-64189CVE-2026-64191CVE-2026-64206CVE-2026-64248CVE-2026-64249CVE-2026-64250CVE-2026-64252CVE-2026-64266CVE-2026-64268CVE-2026-64269CVE-2026-64271CVE-2026-64273CVE-2026-64274CVE-2026-64275CVE-2026-64276CVE-2026-64277CVE-2026-64279CVE-2026-64296CVE-2026-64297CVE-2026-64298CVE-2026-64299CVE-2026-64301CVE-2026-64303CVE-2026-64304CVE-2026-64306CVE-2026-64312CVE-2026-64313CVE-2026-64315CVE-2026-64316CVE-2026-64317CVE-2026-64318CVE-2026-64322CVE-2026-64323CVE-2026-64324CVE-2026-64329CVE-2026-64330CVE-2026-64331CVE-2026-64332CVE-2026-64333CVE-2026-64334CVE-2026-64335CVE-2026-64336CVE-2026-64337CVE-2026-64338CVE-2026-64340CVE-2026-64342CVE-2026-64343CVE-2026-64344CVE-2026-64345CVE-2026-64346CVE-2026-64347CVE-2026-64348CVE-2026-64350CVE-2026-64351CVE-2026-64352CVE-2026-64355CVE-2026-64359CVE-2026-64360CVE-2026-64361CVE-2026-64362CVE-2026-64363CVE-2026-64364CVE-2026-64365CVE-2026-64370CVE-2026-64371CVE-2026-64372CVE-2026-64373CVE-2026-64374CVE-2026-64375CVE-2026-64376CVE-2026-64378CVE-2026-64379CVE-2026-64380CVE-2026-64381CVE-2026-64390CVE-2026-64393CVE-2026-64394CVE-2026-64395CVE-2026-64396CVE-2026-64397CVE-2026-64398CVE-2026-64399CVE-2026-64401CVE-2026-64403CVE-2026-64406CVE-2026-64408CVE-2026-64409CVE-2026-64411CVE-2026-64412CVE-2026-64413CVE-2026-64417CVE-2026-64419CVE-2026-64420CVE-2026-64422CVE-2026-64423CVE-2026-64425CVE-2026-64428CVE-2026-64429CVE-2026-64430CVE-2026-64432CVE-2026-64435CVE-2026-64436CVE-2026-64437CVE-2026-64438CVE-2026-64440CVE-2026-64441CVE-2026-64442CVE-2026-64443CVE-2026-64444CVE-2026-64445CVE-2026-64446CVE-2026-64448CVE-2026-64449CVE-2026-64450CVE-2026-64452CVE-2026-64454CVE-2026-64455CVE-2026-64456CVE-2026-64458CVE-2026-64461CVE-2026-64462CVE-2026-64465CVE-2026-64468CVE-2026-64469CVE-2026-64470CVE-2026-64471CVE-2026-64472CVE-2026-64475CVE-2026-64476CVE-2026-64478CVE-2026-64480CVE-2026-64482CVE-2026-64483CVE-2026-64484CVE-2026-64486CVE-2026-64487CVE-2026-64488CVE-2026-64489CVE-2026-64494CVE-2026-64495CVE-2026-64496CVE-2026-64497CVE-2026-64500CVE-2026-64503CVE-2026-64504CVE-2026-64505CVE-2026-64510CVE-2026-64512CVE-2026-64514CVE-2026-64529CVE-2026-64530CVE-2026-64531CVE-2026-64532CVE-2026-64533CVE-2026-64534CVE-2026-64535CVE-2026-64536CVE-2026-64537CVE-2026-64538CVE-2026-64539CVE-2026-64540CVE-2026-64541CVE-2026-64544CVE-2026-64545CVE-2026-64546CVE-2026-64547CVE-2026-64548CVE-2026-64549CVE-2026-64550CVE-2026-64551CVE-2026-64552CVE-2026-64553CVE-2026-64554CVE-2026-64557CVE-2026-64560CVE-2026-64600
Separate evidence group
Original

Multiples vulnérabilités dans le noyau Linux de Red Hat (07 août 2026)

De multiples vulnérabilités ont été découvertes dans le noyau Linux de Red Hat. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire, une élévation de privilèges et un déni de service à distance.

CVE-2025-10263CVE-2025-40026CVE-2025-54518CVE-2025-68211CVE-2025-68214CVE-2026-23199CVE-2026-23415CVE-2026-31692CVE-2026-31787CVE-2026-43116CVE-2026-43186CVE-2026-43450CVE-2026-45984CVE-2026-46113CVE-2026-46116CVE-2026-46150CVE-2026-46303CVE-2026-52923CVE-2026-52993CVE-2026-53359CVE-2026-63807CVE-2026-64530CVE-2026-64531
Separate evidence group
Original

Multiples vulnérabilités dans le noyau Linux de SUSE (07 août 2026)

De multiples vulnérabilités ont été découvertes dans le noyau Linux de SUSE. Elles permettent à un attaquant de provoquer un contournement de la politique de sécurité et un problème de sécurité non spécifié par l'éditeur.

CVE-2026-23240CVE-2026-31738CVE-2026-43038CVE-2026-46113CVE-2026-53359CVE-2026-53366
Separate evidence group
Original

Multiples vulnérabilités dans le noyau Linux d'Ubuntu (07 août 2026)

De multiples vulnérabilités ont été découvertes dans le noyau Linux d'Ubuntu. Certaines d'entre elles permettent à un attaquant de provoquer une élévation de privilèges, une atteinte à la confidentialité des données et un problème de sécurité non spécifié par l'éditeur.

CVE-2022-49803CVE-2022-49961CVE-2022-50073CVE-2022-50116CVE-2022-50552CVE-2023-45896CVE-2023-52682CVE-2023-52737CVE-2023-53545CVE-2023-53596CVE-2023-53629CVE-2024-27389CVE-2024-35865CVE-2024-36898CVE-2024-36922CVE-2024-41079CVE-2024-46715CVE-2024-46770CVE-2024-47809CVE-2024-50012CVE-2024-53221CVE-2024-56557CVE-2024-56584CVE-2024-56657CVE-2024-56719CVE-2024-56727CVE-2025-21712CVE-2025-21739CVE-2025-21863CVE-2025-22107CVE-2025-23141CVE-2025-37786CVE-2025-38006CVE-2025-38105CVE-2025-38192CVE-2025-38250CVE-2025-38562CVE-2025-38626CVE-2025-38659CVE-2025-38710CVE-2025-39748CVE-2025-39764CVE-2025-40005CVE-2025-40016CVE-2025-40103CVE-2025-40323CVE-2025-54505CVE-2025-54518CVE-2025-68206CVE-2025-68239CVE-2025-68256CVE-2025-68307CVE-2025-68358CVE-2025-71150CVE-2025-71161CVE-2025-71221CVE-2025-71232CVE-2025-71233CVE-2025-71235CVE-2025-71236CVE-2025-71237CVE-2025-71238CVE-2025-71239CVE-2025-71265CVE-2025-71266CVE-2025-71267CVE-2025-71274CVE-2025-71287CVE-2025-71292CVE-2025-71304CVE-2026-23031CVE-2026-23066CVE-2026-23100CVE-2026-23113CVE-2026-23141CVE-2026-23157CVE-2026-23169CVE-2026-23204CVE-2026-23220CVE-2026-23221CVE-2026-23222CVE-2026-23227CVE-2026-23228CVE-2026-23229CVE-2026-23234CVE-2026-23235CVE-2026-23236CVE-2026-23237CVE-2026-23238CVE-2026-23241CVE-2026-23242CVE-2026-23243CVE-2026-23253CVE-2026-23266CVE-2026-23270CVE-2026-23277CVE-2026-23279CVE-2026-23281CVE-2026-23286CVE-2026-23289CVE-2026-23290CVE-2026-23291CVE-2026-23293CVE-2026-23296CVE-2026-23298CVE-2026-23300CVE-2026-23303CVE-2026-23304CVE-2026-23307CVE-2026-23312CVE-2026-23318CVE-2026-23324CVE-2026-23335CVE-2026-23336CVE-2026-23339CVE-2026-23340CVE-2026-23352CVE-2026-23356CVE-2026-23357CVE-2026-23359CVE-2026-23362CVE-2026-23365CVE-2026-23367CVE-2026-23368CVE-2026-23370CVE-2026-23372CVE-2026-23379CVE-2026-23381CVE-2026-23382CVE-2026-23388CVE-2026-23391CVE-2026-23392CVE-2026-23395CVE-2026-23396CVE-2026-23397CVE-2026-23398CVE-2026-23399CVE-2026-23401CVE-2026-23420CVE-2026-23434CVE-2026-23438CVE-2026-23439CVE-2026-23442CVE-2026-23444CVE-2026-23446CVE-2026-23452CVE-2026-23454CVE-2026-23456CVE-2026-23457CVE-2026-23458CVE-2026-23460CVE-2026-23462CVE-2026-23463CVE-2026-23474CVE-2026-31393CVE-2026-31396CVE-2026-31399CVE-2026-31400CVE-2026-31405CVE-2026-31407CVE-2026-31408CVE-2026-31409CVE-2026-31411CVE-2026-31415CVE-2026-31416CVE-2026-31417CVE-2026-31421CVE-2026-31422CVE-2026-31423CVE-2026-31424CVE-2026-31425CVE-2026-31427CVE-2026-31428CVE-2026-31433CVE-2026-31446CVE-2026-31447CVE-2026-31450CVE-2026-31452CVE-2026-31454CVE-2026-31455CVE-2026-31464CVE-2026-31466CVE-2026-31467CVE-2026-31469CVE-2026-31473CVE-2026-31476CVE-2026-31480CVE-2026-31483CVE-2026-31485CVE-2026-31489CVE-2026-31494CVE-2026-31495CVE-2026-31497CVE-2026-31498CVE-2026-31507CVE-2026-31508CVE-2026-31509CVE-2026-31510CVE-2026-31512CVE-2026-31515CVE-2026-31518CVE-2026-31521CVE-2026-31522CVE-2026-31523CVE-2026-31524CVE-2026-31532CVE-2026-31540CVE-2026-31545CVE-2026-31546CVE-2026-31549CVE-2026-31550CVE-2026-31551CVE-2026-31552CVE-2026-31555CVE-2026-31565CVE-2026-31570CVE-2026-31576CVE-2026-31577CVE-2026-31578CVE-2026-31580CVE-2026-31581CVE-2026-31583CVE-2026-31585CVE-2026-31586CVE-2026-31588CVE-2026-31590CVE-2026-31594CVE-2026-31596CVE-2026-31597CVE-2026-31598CVE-2026-31599CVE-2026-31602CVE-2026-31603CVE-2026-31605CVE-2026-31615CVE-2026-31616CVE-2026-31617CVE-2026-31618CVE-2026-31619CVE-2026-31622CVE-2026-31623CVE-2026-31624CVE-2026-31625CVE-2026-31626CVE-2026-31627CVE-2026-31628CVE-2026-31629CVE-2026-31630CVE-2026-31634CVE-2026-31642CVE-2026-31651CVE-2026-31656CVE-2026-31658CVE-2026-31660CVE-2026-31661CVE-2026-31662CVE-2026-31664CVE-2026-31665CVE-2026-31667CVE-2026-31670CVE-2026-31671CVE-2026-31672CVE-2026-31673CVE-2026-31674CVE-2026-31676CVE-2026-31679CVE-2026-31680CVE-2026-31681CVE-2026-31683CVE-2026-31684CVE-2026-31686CVE-2026-31687CVE-2026-31694CVE-2026-31695CVE-2026-31696CVE-2026-31697CVE-2026-31698CVE-2026-31699CVE-2026-31701CVE-2026-31716CVE-2026-31720CVE-2026-31721CVE-2026-31726CVE-2026-31728CVE-2026-31737CVE-2026-31738CVE-2026-31747CVE-2026-31748CVE-2026-31749CVE-2026-31751CVE-2026-31752CVE-2026-31754CVE-2026-31755CVE-2026-31756CVE-2026-31758CVE-2026-31759CVE-2026-31761CVE-2026-31762CVE-2026-31763CVE-2026-31770CVE-2026-31773CVE-2026-31778CVE-2026-31780CVE-2026-31781CVE-2026-31788CVE-2026-43014CVE-2026-43015CVE-2026-43020CVE-2026-43024CVE-2026-43026CVE-2026-43027CVE-2026-43028CVE-2026-43030CVE-2026-43032CVE-2026-43035CVE-2026-43040CVE-2026-43041CVE-2026-43043CVE-2026-43046CVE-2026-43047CVE-2026-43050CVE-2026-43051CVE-2026-43052CVE-2026-43054CVE-2026-43058CVE-2026-43060CVE-2026-43061CVE-2026-43062CVE-2026-43065CVE-2026-43066CVE-2026-43068CVE-2026-43069CVE-2026-43074CVE-2026-43075CVE-2026-43076CVE-2026-43079CVE-2026-43080CVE-2026-43085CVE-2026-43089CVE-2026-43093CVE-2026-43098CVE-2026-43099CVE-2026-43103CVE-2026-43104CVE-2026-43105CVE-2026-43110CVE-2026-43111CVE-2026-43112CVE-2026-43113CVE-2026-43123CVE-2026-43124CVE-2026-43130CVE-2026-43132CVE-2026-43133CVE-2026-43134CVE-2026-43135CVE-2026-43136CVE-2026-43139CVE-2026-43140CVE-2026-43141CVE-2026-43145CVE-2026-43147CVE-2026-43148CVE-2026-43149CVE-2026-43152CVE-2026-43156CVE-2026-43158CVE-2026-43159CVE-2026-43163CVE-2026-43168CVE-2026-43171CVE-2026-43180CVE-2026-43182CVE-2026-43183CVE-2026-43184CVE-2026-43187CVE-2026-43190CVE-2026-43194CVE-2026-43196CVE-2026-43200CVE-2026-43202CVE-2026-43203CVE-2026-43205CVE-2026-43206CVE-2026-43207CVE-2026-43209CVE-2026-43211CVE-2026-43218CVE-2026-43223CVE-2026-43225CVE-2026-43226CVE-2026-43227CVE-2026-43230CVE-2026-43231CVE-2026-43232CVE-2026-43233CVE-2026-43236CVE-2026-43241CVE-2026-43242CVE-2026-43246CVE-2026-43251CVE-2026-43255CVE-2026-43257CVE-2026-43261CVE-2026-43262CVE-2026-43264CVE-2026-43266CVE-2026-43268CVE-2026-43269CVE-2026-43270CVE-2026-43273CVE-2026-43275CVE-2026-43277CVE-2026-43279CVE-2026-43281CVE-2026-43283CVE-2026-43287CVE-2026-43289CVE-2026-43291CVE-2026-43295CVE-2026-43296CVE-2026-43302CVE-2026-43312CVE-2026-43313CVE-2026-43314CVE-2026-43315CVE-2026-43316CVE-2026-43324CVE-2026-43327CVE-2026-43328CVE-2026-43329CVE-2026-43333CVE-2026-43334CVE-2026-43336CVE-2026-43339CVE-2026-43340CVE-2026-43342CVE-2026-43343CVE-2026-43357CVE-2026-43363CVE-2026-43365CVE-2026-43370CVE-2026-43373CVE-2026-43380CVE-2026-43381CVE-2026-43382CVE-2026-43386CVE-2026-43387CVE-2026-43405CVE-2026-43411CVE-2026-43420CVE-2026-43425CVE-2026-43426CVE-2026-43427CVE-2026-43428CVE-2026-43429CVE-2026-43430CVE-2026-43432CVE-2026-43439CVE-2026-43445CVE-2026-43449CVE-2026-43450CVE-2026-43451CVE-2026-43452CVE-2026-43453CVE-2026-43458CVE-2026-43459CVE-2026-43466CVE-2026-43469CVE-2026-43472CVE-2026-43473CVE-2026-43475CVE-2026-43476CVE-2026-43480CVE-2026-43484CVE-2026-43496CVE-2026-43497CVE-2026-43502CVE-2026-45834CVE-2026-45835CVE-2026-45836CVE-2026-45838CVE-2026-45839CVE-2026-45840CVE-2026-45841CVE-2026-45842CVE-2026-45843CVE-2026-45844CVE-2026-45846CVE-2026-45847CVE-2026-45848CVE-2026-45852CVE-2026-45856CVE-2026-45857CVE-2026-45860CVE-2026-45862CVE-2026-45864CVE-2026-45866CVE-2026-45867CVE-2026-45868CVE-2026-45869CVE-2026-45870CVE-2026-45871CVE-2026-45873CVE-2026-45875CVE-2026-45879CVE-2026-45883CVE-2026-45885CVE-2026-45890CVE-2026-45891CVE-2026-45899CVE-2026-45902CVE-2026-45904CVE-2026-45911CVE-2026-45912CVE-2026-45915CVE-2026-45916CVE-2026-45919CVE-2026-45920CVE-2026-45924CVE-2026-45935CVE-2026-45936CVE-2026-45941CVE-2026-45946CVE-2026-45948CVE-2026-45954CVE-2026-45956CVE-2026-45958CVE-2026-45960CVE-2026-45964CVE-2026-45965CVE-2026-45968CVE-2026-45969CVE-2026-45970CVE-2026-45974CVE-2026-45978CVE-2026-45983CVE-2026-45984CVE-2026-45985CVE-2026-45986CVE-2026-45987CVE-2026-45994CVE-2026-46002CVE-2026-46004CVE-2026-46006CVE-2026-46009CVE-2026-46015CVE-2026-46018CVE-2026-46019CVE-2026-46022CVE-2026-46023CVE-2026-46024CVE-2026-46027CVE-2026-46033CVE-2026-46037CVE-2026-46040CVE-2026-46044CVE-2026-46046CVE-2026-46047CVE-2026-46049CVE-2026-46050CVE-2026-46051CVE-2026-46053CVE-2026-46062CVE-2026-46064CVE-2026-46070CVE-2026-46072CVE-2026-46077CVE-2026-46080CVE-2026-46082CVE-2026-46088CVE-2026-46098CVE-2026-46099CVE-2026-46101CVE-2026-46102CVE-2026-46107CVE-2026-46108CVE-2026-46112CVE-2026-46120CVE-2026-46122CVE-2026-46123CVE-2026-46124CVE-2026-46127CVE-2026-46128CVE-2026-46132CVE-2026-46133CVE-2026-46137CVE-2026-46146CVE-2026-46149CVE-2026-46150CVE-2026-46151CVE-2026-46161CVE-2026-46163CVE-2026-46167CVE-2026-46168CVE-2026-46172CVE-2026-46174CVE-2026-46177CVE-2026-46178CVE-2026-46184CVE-2026-46186CVE-2026-46187CVE-2026-46189CVE-2026-46197CVE-2026-46198CVE-2026-46205CVE-2026-46206CVE-2026-46209CVE-2026-46212CVE-2026-46214CVE-2026-46219CVE-2026-46220CVE-2026-46227CVE-2026-46230CVE-2026-46231CVE-2026-46233CVE-2026-46234CVE-2026-46236CVE-2026-46238CVE-2026-46249CVE-2026-46250CVE-2026-46253CVE-2026-46259CVE-2026-46267CVE-2026-46270CVE-2026-46273CVE-2026-46274CVE-2026-46275CVE-2026-46285CVE-2026-46294CVE-2026-46301CVE-2026-46303CVE-2026-46304CVE-2026-46307CVE-2026-46319CVE-2026-46328CVE-2026-52911CVE-2026-52912CVE-2026-52914CVE-2026-52915CVE-2026-52916CVE-2026-52919CVE-2026-52920CVE-2026-52921CVE-2026-52922CVE-2026-52925CVE-2026-52926CVE-2026-52931CVE-2026-52954CVE-2026-52955CVE-2026-52957CVE-2026-52958CVE-2026-52962CVE-2026-52963CVE-2026-52969CVE-2026-52970CVE-2026-52982CVE-2026-52984CVE-2026-52985CVE-2026-52986CVE-2026-52992CVE-2026-52993CVE-2026-52995CVE-2026-52998CVE-2026-52999CVE-2026-53001CVE-2026-53002CVE-2026-53003CVE-2026-53004CVE-2026-53006CVE-2026-53011CVE-2026-53012CVE-2026-53016CVE-2026-53021CVE-2026-53022CVE-2026-53023CVE-2026-53037CVE-2026-53039CVE-2026-53040CVE-2026-53041CVE-2026-53043CVE-2026-53045CVE-2026-53046CVE-2026-53047CVE-2026-53048CVE-2026-53049CVE-2026-53050CVE-2026-53059CVE-2026-53060CVE-2026-53061CVE-2026-53062CVE-2026-53064CVE-2026-53065CVE-2026-53068CVE-2026-53069CVE-2026-53071CVE-2026-53072CVE-2026-53073CVE-2026-53074CVE-2026-53075CVE-2026-53077CVE-2026-53082CVE-2026-53088CVE-2026-53093CVE-2026-53096CVE-2026-53112CVE-2026-53128CVE-2026-53130CVE-2026-53287CVE-2026-53291CVE-2026-53294CVE-2026-53295CVE-2026-53296CVE-2026-53304CVE-2026-53306CVE-2026-53309CVE-2026-53320CVE-2026-53369CVE-2026-53379CVE-2026-63860CVE-2026-63865CVE-2026-64018CVE-2026-64032CVE-2026-64033CVE-2026-64034CVE-2026-64039CVE-2026-64046CVE-2026-64047CVE-2026-64055CVE-2026-64056CVE-2026-64083CVE-2026-64084CVE-2026-64085CVE-2026-64086CVE-2026-64087CVE-2026-64088CVE-2026-64089CVE-2026-64096CVE-2026-64102CVE-2026-64103CVE-2026-64113CVE-2026-64114CVE-2026-64115CVE-2026-64125CVE-2026-64133CVE-2026-64135CVE-2026-64153CVE-2026-64155CVE-2026-64164CVE-2026-64165CVE-2026-64166CVE-2026-64168CVE-2026-64173CVE-2026-64174CVE-2026-64177CVE-2026-64178CVE-2026-64179CVE-2026-64185CVE-2026-64218CVE-2026-64219CVE-2026-64220CVE-2026-64221
Separate evidence group
Original

Multiples vulnérabilités dans les produits IBM (07 août 2026)

De multiples vulnérabilités ont été découvertes dans les produits IBM. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, une élévation de privilèges et un déni de service à distance.

CVE-2023-53781CVE-2024-34459CVE-2024-4741CVE-2025-13755CVE-2025-14813CVE-2025-21858CVE-2025-36372CVE-2025-39981CVE-2025-53906CVE-2025-68161CVE-2025-68183CVE-2025-68347CVE-2025-68366CVE-2025-71116CVE-2026-10025CVE-2026-10109CVE-2026-10535CVE-2026-10695CVE-2026-10842CVE-2026-11897CVE-2026-11906CVE-2026-13367CVE-2026-13476CVE-2026-14446CVE-2026-14512CVE-2026-14515CVE-2026-14528CVE-2026-14529CVE-2026-14974CVE-2026-14976CVE-2026-14980CVE-2026-14981CVE-2026-15057CVE-2026-15064CVE-2026-15280CVE-2026-15325CVE-2026-15328CVE-2026-16184CVE-2026-16192CVE-2026-16243CVE-2026-16439CVE-2026-16441CVE-2026-1718CVE-2026-22007CVE-2026-22013CVE-2026-22021CVE-2026-2291CVE-2026-22984CVE-2026-22990CVE-2026-23243CVE-2026-23270CVE-2026-23392CVE-2026-23455CVE-2026-2482CVE-2026-28390CVE-2026-29518CVE-2026-3012CVE-2026-3039CVE-2026-31408CVE-2026-31532CVE-2026-31581CVE-2026-31613CVE-2026-31669CVE-2026-31684CVE-2026-31685CVE-2026-31709CVE-2026-31786CVE-2026-31787CVE-2026-33870CVE-2026-33871CVE-2026-34477CVE-2026-34478CVE-2026-34479CVE-2026-34480CVE-2026-35177CVE-2026-39979CVE-2026-40164CVE-2026-4046CVE-2026-41254CVE-2026-41284CVE-2026-41293CVE-2026-41417CVE-2026-42496CVE-2026-42497CVE-2026-42498CVE-2026-42580CVE-2026-42581CVE-2026-42583CVE-2026-42584CVE-2026-42585CVE-2026-42587CVE-2026-42944CVE-2026-42959CVE-2026-43020CVE-2026-43027CVE-2026-43037CVE-2026-43038CVE-2026-43051CVE-2026-43110CVE-2026-43125CVE-2026-43158CVE-2026-43163CVE-2026-43190CVE-2026-43329CVE-2026-43512CVE-2026-43513CVE-2026-43514CVE-2026-43515CVE-2026-43618CVE-2026-43964CVE-2026-4408CVE-2026-4480CVE-2026-45186CVE-2026-45447CVE-2026-45852CVE-2026-46056CVE-2026-46125CVE-2026-46152CVE-2026-46181CVE-2026-46243CVE-2026-46968CVE-2026-47010CVE-2026-47021CVE-2026-47027CVE-2026-47057CVE-2026-47058CVE-2026-47059CVE-2026-47063CVE-2026-4890CVE-2026-4891CVE-2026-4892CVE-2026-4893CVE-2026-48962CVE-2026-48978CVE-2026-49268CVE-2026-49432CVE-2026-49434CVE-2026-50151CVE-2026-50162CVE-2026-50163CVE-2026-50645CVE-2026-50734CVE-2026-53916CVE-2026-53917CVE-2026-54399CVE-2026-54428CVE-2026-54475CVE-2026-54512CVE-2026-54513CVE-2026-54514CVE-2026-54515CVE-2026-54516CVE-2026-54517CVE-2026-54518CVE-2026-5588CVE-2026-5598CVE-2026-5946CVE-2026-60147CVE-2026-6051CVE-2026-6052CVE-2026-6053CVE-2026-6893CVE-2026-6914CVE-2026-6915CVE-2026-6938CVE-2026-7771CVE-2026-8053CVE-2026-8199CVE-2026-8200CVE-2026-8201CVE-2026-8202CVE-2026-8400CVE-2026-9171CVE-2026-9322CVE-2026-9538CVE-2026-9762
Separate evidence group
Original

Multiples vulnérabilités dans WordPress (07 août 2026)

De multiples vulnérabilités ont été découvertes dans WordPress. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, une élévation de privilèges et une atteinte à la confidentialité des données.

CVE-2026-64638
Separate evidence group
Original

The Coordination Gap: How Attackers Are Outpacing Law Enforcement

The fight against cybercrime continues because threat actors have adapted their strategies to avoid deterrents, but law enforcement still operates in silos.

Separate evidence group
Original

Déjà Vu? Meta's AI Escapes Testing Lab in Hacking Joyride

In the span of three weeks, OpenAI, Anthropic, and Meta have all disclosed AI agent sandbox escape events affecting real organizations.

Separate evidence group
Original

Researcher Claims Control of ChatGPT Secure Sandbox

A researcher demonstrated a proof-of-concept attack chain that provided C2-style influence over ChatGPT's isolated sandbox during a session at Black Hat USA 2026.

Separate evidence group
Original

From Bobmojis to Bobbleheads: How the Democratic Party Built a Security-First Culture

Two former chief security officers of the Democratic National Committee explain that a strong security-first mindset requires executive support — and a dose of absurdity.

Separate evidence group
Original