惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
F
Fortinet All Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
G
Google Developers Blog
L
LangChain Blog
博客园_首页
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
IT之家
IT之家
量子位
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
AISLE Discovers 6 CVEs in curl, Including Oldest Issue Ever
ragebol · 2026-06-25 · via Hacker News

Curl runs on more than 30 billion devices. As one of the most important pieces of software in the world, it facilitates data transfers to and from operating systems, containers, appliances, CI pipelines, package managers, SDKs, cars, and is even on Mars inside NASA's Ingenuity Helicopter. Billions of users never run the curl command directly, but still depend on libcurl, the engine behind curl, through another product.

On May 11, 2026, curl founder and lead developer Daniel Stenberg announced that Anthropic’s Mythos model had found a single CVE in curl. His blog post unleashed a wave of research, which led to a flood of security reports to the curl project and, eventually, to the highest number of CVEs ever issued for a release of curl, 18.

AISLE led all security organizations with 6 of those 18 CVEs, plus additional valid findings, across curl and libcurl. The next-closest AI-powered organization received 3 CVEs, while researchers using Anthropic and OpenAI models found 1 each. These discoveries provide further validation that AISLE's model-agnostic system can outperform frontier models at a fraction of the cost, in any deployment environment.

All AISLE findings were responsibly disclosed to the curl project and were fixed in the June 24, 2026 release of curl 8.21.0. We urge everyone to update to the latest version.

Finding the Oldest curl Security Issue Ever Reported

Curl is of particular interest to security researchers: the easy bugs are long gone, and what remains is difficult to find: old protocol paths, state reuse, callback behavior, credential selection, and code paths that are easily forgotten about. That’s why we used AISLE’s autonomous vulnerability detection capability to find vulnerabilities in fall 2025, discovering 29 valid findings and 5 CVEs.

The 6 CVEs most recently identified by AISLE range from classic memory-lifetime issues to logic bugs in how libcurl decides whether a connection, credential, or host identity is still valid. They include CVE-2026-8932, the oldest curl vulnerability reported so far at over 25 years of age. Shipped in releases since curl version 7.7, it was first shipped on March 22, 2001.

A Summary of AISLE’s Findings

Notably, several issues only affect libcurl applications, not the curl command line tool. This means they affect the code embedded deep inside products where users do not know it is present, and where they become likely targets reachable through application behavior.

Finding

Area

What happened

CVE-2026-8926

.netrc credential handling

curl could select a password belonging to a different user for the same host when the URL supplied a username but no password (credential confusion).

CVE-2026-8925

SASL authentication

curl could clean up and free the same GSASL context twice in SASL-enabled protocol flows (double free).

CVE-2026-8932

mTLS connection reuse

libcurl could reuse an existing connection even after client certificate or private key settings had changed (authentication bypass).

CVE-2026-9080

Multi socket callback lifecycle

calling curl_easy_pause() inside a socket callback could leave libcurl writing through a freed internal pointer (use after free).

CVE-2026-9547

SSH host validation

with the libssh backend, SCP/SFTP transfers using a host-key callback could accept a server key type that should have been rejected (improper host validation).

CVE-2026-10536

HTTP/2 stream dependencies

resetting and then cleaning up a handle using HTTP/2 dependency options could cause libcurl to touch already-freed state (use after free).

AISLE also reported several other curl bugs, including three memory safety issues:

Not every bug becomes a CVE, but these reports fall within the same category. They are all subtle edge cases in mature infrastructure code, especially around memory safety, state transitions, and esoteric API paths.

Bolstering the Case for Model-Agnostic Security Systems

The fact that AISLE claimed 6 of the 18 total findings in this release provides further support of our premise that well-engineered, model-agnostic systems rival high-powered frontier models on cybersecurity tasks.

Moreover, AISLE did more than simply discover vulnerabilities. Three CVEs were also patched using fixes generated by our platform. It goes to show that cybersecurity capability is jagged: for well-defined security tasks, smaller models can outperform much larger and more expensive LLMs. Notably, they can do so locally, completely on-premises, without making API calls.

The challenge is to match model capability and security needs. In other words, AI-native cybersecurity is not primarily a compute problem, but an engineering problem.

Engineering AI for Security with AISLE

AISLE’s end-to-end vulnerability management platform delivers autonomous security within your deployment constraints, from air-gapped networks to the cloud. If you want to see what AI will find in your codebase, talk to us.

Our sincere thanks to the curl project for their professionalism throughout the disclosure process. All our CVEs were reported and disclosed by Joshua Rogers of the AISLE Research Team.