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

推荐订阅源

博客园 - 叶小钗
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
博客园 - 聂微东
有赞技术团队
有赞技术团队
The Cloudflare Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
T
The Blog of Author Tim Ferriss
D
Docker
L
LangChain Blog
Vercel News
Vercel News
C
Check Point Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
人人都是产品经理
人人都是产品经理

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Rethinking vulnerability management in the age of AI and ...
Kathleen Moriarty · 2026-06-20 · via Hacker News - Newest: "AI"

Vibe coding, where developers guide Artificial Intelligence (AI) agents to build software rather than writing line-by-line code, and the use of AI to secure it, have taken hold. Even sophisticated developers have transitioned because of speed and the ability to increase their output tenfold. The implications extend far beyond how we write software; they reach into how we discover, track, and remediate vulnerabilities. The downstream processes from software development must adapt.

Consider what happens when a developer alerts the AI to a discovered vulnerability. The likely pattern is that the AI scans the code, looks for similar vulnerabilities, and asks whether it should resolve them as well. A thorough review of the codebase is then performed to remove that type of vulnerability. Another possibility is that the code is regenerated from the artefact, which may reduce other existing vulnerabilities. The model or training data may have learned improved patterns for software architecture, alignment to zero trust, and API security improvements. Because the code is being reconstructed, the vulnerabilities you seek to fix may be resolved alongside an entire set that was previously unknown.

This changes the question we should be asking about the Common Vulnerabilities and Exposures (CVE) system.

CVE has long been the primary method for tracking and sharing discovered vulnerabilities. CVEs tied to versions help identify which vulnerabilities no longer apply. CI/CD pipelines, where applications are pushed out continuously, operate differently from codebases where vendors provide updates for customers to deploy onsite. For years, cloud-native architectures have used a different model to patch and remediate vulnerabilities without distributing impact to customers. There have also been ongoing challenges in deciding which CVEs should be prioritized.

But what happens as entire codebases are rewritten using more secure languages and updated architectural patterns? The existing set of vulnerabilities may be removed, or potentially replaced with new ones, ideally far fewer. Over time, we should see less need to track vulnerabilities as older, more vulnerable software is deprecated in favour of modern languages, improved architecture, and AI-driven software assurance.

This raises an important question: If a vulnerability is discovered and resolved within a platform managed through a CI/CD pipeline, and you know it is resolved, should the CVE still exist?

The purpose of the CVE catalogue is to coordinate awareness and remediation across vendors and operators who might still be exposed. If remediation is confirmed, automatic, and verifiable, and if no impacted version remains in use, what role does an active CVE serve? Keeping it as a historical record has value for retrospective analysis. However, as a live signal in a threat feed, it becomes noise. We should start considering better mechanisms for tracking vulnerabilities in highly dynamic environments, where new code and patches can be generated quickly, and workloads can shift to updated software through the resilience of cloud-native platforms and CI/CD pipelines.

This pace of change not only challenges how we track vulnerabilities through CVE, but it also reshapes how we score their severity using the Common Vulnerability Scoring System (CVSS). CVSS may need to include greater consideration of the operating environment. Code may be vulnerable in isolation, but how vulnerable is it when environmental controls are taken into account? Not all workloads run within a trusted execution environment or secure enclave, but some do. In addition, systems may verify changes in running code to detect exploits of known vulnerabilities quickly, reducing or preventing harm. A static base score that ignores these factors increasingly tells us less than it once did.

Despite numerous reports suggesting that vulnerabilities may disappear, we are not there yet. Even if code is widely written in languages that prevent memory safety vulnerabilities, risks remain. These include embedded malicious code from insider threats and hardware-based vulnerabilities that require software or firmware mitigation, for example, Spectre and Meltdown. AI can rapidly rewrite software to work around hardware flaws, as seen with Spectre and Meltdown, which exploit speculative execution in hardware. In these cases, hardware remains the limiting factor. With software, however, it is increasingly possible to transition an entire codebase in a short time to a language that improves memory safety. Legacy code is disappearing quickly, and this trend is likely to continue over the next few years.

Do not simply accept these outcomes. Actively participate in shaping the process changes that follow this rapid evolution in software development. CVEs, CVSS, and threat feeds were designed for a slower, more static world. It is time to step back and consider the implications not only for vulnerabilities and exploits, but also for the processes we use to manage them and the impact on our environments.

Kathleen Moriarty is the Founder of SecurityBiaS, a Technology Strategist, CTO, Board Member, Keynote Speaker, Author, CISO, and former IETF Security Area Director. She has more than two decades of experience working on ecosystems, standards, and strategy.

Adapted from the original on SecurityBias blog.


The views expressed by the authors of this blog are their own and do not necessarily reflect the views of APNIC. Please note a Code of Conduct applies to this blog.