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

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

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
Ollama Out-of-Bounds Read, Docker UFW Bypass, & EagleSpy ...
soy · 2026-05-11 · via DEV Community

soy

Ollama Out-of-Bounds Read, Docker UFW Bypass, & EagleSpy RAT Analysis

Today's Highlights

This week, a critical out-of-bounds read vulnerability in Ollama could lead to remote memory leaks, highlighting AI security risks. We also revisit a common Docker networking pitfall that bypasses UFW, exposing databases, and dive into a technical analysis of the rebranded EagleSpy V6.0 RAT distributed via Odysee and Telegram.

Ollama Out-of-Bounds Read Vulnerability Allows Remote Process Memory Leak (r/cybersecurity)

Source: https://reddit.com/r/cybersecurity/comments/1t96jg8/ollama_outofbounds_read_vulnerability_allows/

A newly identified out-of-bounds (OOB) read vulnerability within Ollama, a popular framework for running large language models locally, poses a significant security risk. This flaw could enable a remote attacker to leak sensitive process memory, potentially exposing confidential data or internal system details. The vulnerability stems from improper handling of memory boundaries, allowing unauthorized access to adjacent memory regions during specific operations. Given Ollama's role in local AI development and deployment, such a memory leak could compromise intellectual property, user data, or even system-level credentials if an attacker can exploit it to read privileged memory.

This incident underscores the emerging security challenges within AI/ML ecosystems, particularly with locally hosted models. While the immediate impact is a memory leak, OOB vulnerabilities can sometimes be chained with other exploits to achieve more severe outcomes, such as arbitrary code execution. Users are strongly advised to update their Ollama installations to the latest patched version as soon as possible to mitigate this risk. Implementing robust input validation and reviewing memory safety practices in AI frameworks are crucial steps to prevent similar vulnerabilities in the future.

Comment: For anyone using Ollama to experiment with LLMs locally, this is a critical patch. An OOB read leading to remote memory leak is a serious vector for data exfiltration, directly compromising the local AI environment.

Docker bypasses UFW and exposed my database. Again. Writing this down so I stop forgetting (r/selfhosted)

Source: https://reddit.com/r/selfhosted/comments/1t92807/docker_bypasses_ufw_and_exposed_my_database_again/

This post highlights a recurrent and often overlooked security pitfall for Docker users: Docker's default networking behavior can bypass host-level firewalls like UFW (Uncomplicated Firewall), inadvertently exposing containerized services to the internet. When Docker publishes a port, it directly manipulates iptables rules, often inserting them before UFW's rules. This means that even if a user configures UFW to block a specific port, Docker's iptables rule can still allow inbound connections to that port on the host, forwarding them to the container. The author recounts their personal experience of a database being unexpectedly exposed despite UFW being active.

The primary defense mechanism is to configure Docker to use the userland-proxy or to manage iptables rules more explicitly to ensure Docker's rules are properly nested or controlled. Alternatively, utilizing docker-compose to declare networks and restricting container-to-host port mappings can help. For critical services, binding to 127.0.0.1 instead of 0.0.0.0 (all interfaces) within the docker run -p or docker-compose.yml configuration is essential to prevent unintended external exposure. This serves as a vital practical hardening guide for anyone deploying Docker containers, especially those containing sensitive services like databases, emphasizing the need to understand container networking beyond simple firewall rules.

Comment: This Docker-UFW interaction is a classic trap. Always bind your Docker services to 127.0.0.1 unless explicitly needed, and understand how Docker's iptables rules interact with your host firewall.

Technical Analysis of EagleSpy V6.0 (CraxsRAT Rebrand) Distributed Through Odysee and Telegram (r/netsec)

Source: https://reddit.com/r/netsec/comments/1t8df0j/technical_analysis_of_eaglespy_v60_craxsrat/

A recent technical analysis exposes EagleSpy V6.0, an Android Remote Access Trojan (RAT) identified as a rebranded version of the well-known CraxsRAT. This sophisticated malware is being actively distributed through non-traditional channels such as Odysee and Telegram, indicating a shift in threat actors' preferred distribution vectors for evading conventional security measures. The analysis provides an in-depth look into the RAT's capabilities, which typically include comprehensive device control, data exfiltration, call recording, SMS interception, and potentially even camera and microphone access. Its rebranding suggests an attempt by malicious actors to avoid detection by existing signatures associated with CraxsRAT, making it a persistent threat.

The distribution through platforms like Odysee, a decentralized video platform, and Telegram, a popular messaging app, points to tactics designed to leverage trust and circumvent app store security checks. This highlights a growing concern in supply chain security, where seemingly benign content or direct messaging can be weaponized to deliver potent malware. Organizations and individual users must exercise extreme caution when downloading applications or files from untrusted sources, even if they appear legitimate. Implementing robust mobile endpoint detection and response (EDR) solutions, coupled with user awareness training about phishing and suspicious downloads, are critical defensive techniques against such evolving threats.

Comment: The use of Odysee and Telegram for RAT distribution is a notable supply chain vector. This detailed analysis helps defenders identify and protect against this rebranded threat, emphasizing vigilance beyond traditional app stores.