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

推荐订阅源

D
Docker
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
D
DataBreaches.Net
B
Blog RSS Feed
博客园_首页
The GitHub Blog
The GitHub Blog
I
InfoQ
L
LangChain Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
腾讯CDC
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI-Driven Kernel LPE Discovery, ChromaDB Memory Poisoning...
soy · 2026-05-10 · via DEV Community

soy

AI-Driven Kernel LPE Discovery, ChromaDB Memory Poisoning & JDownloader Supply Chain Attack

Today's Highlights

This week, discover new techniques leveraging AI to find kernel vulnerabilities and a PoC for memory poisoning AI agents via ChromaDB. Also, a critical supply chain attack saw the JDownloader site compromised to distribute Python RAT malware.

Getting LLMs Drunk to Find Remote Linux Kernel OOB Writes (and More) (r/netsec)

Source: https://reddit.com/r/netsec/comments/1t8cwyx/getting_llms_drunk_to_find_remote_linux_kernel/

This report highlights a novel approach to vulnerability research, specifically targeting the Linux kernel, by "getting LLMs drunk." Researchers are using Large Language Models in unconventional ways to uncover remote Linux Kernel Out-of-Bounds (OOB) write vulnerabilities, among other critical flaws. The findings include newly identified CVEs like CVE-2026-31432 and CVE-2026-31433.

This method demonstrates the growing utility of AI in discovering complex software bugs, pushing the boundaries of automated vulnerability detection beyond traditional fuzzing or static analysis. It suggests a future where AI actively participates in finding and potentially exploiting obscure code paths within critical system components, demanding new defensive strategies.

Comment: This showcases AI's dual-use potential: accelerating vulnerability discovery, which can lead to faster patching. It underscores the importance of staying ahead with AI-driven defensive strategies.

Memory Poisoning AI Agents via ChromaDB (r/netsec)

Source: https://reddit.com/r/netsec/comments/1t8hacl/memory_poisoning_ai_agents_via_chromadb/

Researchers have developed a self-contained Proof-of-Concept (PoC) demonstrating "memory poisoning" against AI agents that utilize persistent vector memory, specifically targeting ChromaDB. This attack vector allows an adversary with write access to the ChromaDB directory to inject malicious data directly into the AI agent's long-term memory. Such an attack could manipulate the agent's behavior, introduce biases, or even facilitate data exfiltration or unauthorized actions by corrupting its learned knowledge or decision-making processes.

The PoC, built using Claude Code, highlights a significant security concern for AI systems relying on external, mutable memory stores like vector databases, emphasizing the need for robust access controls and integrity checks on these components. Understanding this vulnerability is crucial for developers and security professionals working with AI agents to implement proper safeguards.

Comment: This PoC is a must-see for anyone building AI agents. It's a stark reminder that securing the vector database is just as critical as securing the model itself to prevent subtle, persistent AI manipulation.

JDownloader site hacked to replace installers with Python RAT malware (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1t8g9hf/jdownloader_site_hacked_to_replace_installers/

In a concerning supply chain attack, the official JDownloader website was compromised, leading to its legitimate installers being replaced with malicious versions. Threat actors injected Python Remote Access Trojan (RAT) malware into the downloads, allowing them to gain unauthorized control over victims' systems. This incident highlights the critical vulnerability posed by compromised software distribution channels, even for widely used and trusted applications.

Users downloading software from official sources may inadvertently install sophisticated malware, bypassing traditional security measures. The attack underscores the need for robust supply chain security practices, including cryptographic signing of binaries and vigilant monitoring of distribution infrastructure, to protect end-users from such insidious threats. It serves as a stark reminder that trust in software sources cannot be absolute.

Comment: This attack on JDownloader is a classic supply chain nightmare. Always verify hashes or signatures of downloaded software, especially from free utility sites, as a fundamental defense.