<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Santosh T</title>
    <description>The latest articles on DEV Community by Santosh T (@santosh_t_637f7c9257441a5).</description>
    <link>https://dev.to/santosh_t_637f7c9257441a5</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3775196%2F88798ca9-91bb-4b6d-b5f8-8c1927d10ef7.jpg</url>
      <title>DEV Community: Santosh T</title>
      <link>https://dev.to/santosh_t_637f7c9257441a5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/santosh_t_637f7c9257441a5"/>
    <language>en</language>
    <item>
      <title>Why I Built a Secure Open-Source AI Agent After Seeing OpenClaw's 512 CVEs</title>
      <dc:creator>Santosh T</dc:creator>
      <pubDate>Mon, 16 Feb 2026 08:17:15 +0000</pubDate>
      <link>https://dev.to/santosh_t_637f7c9257441a5/why-i-built-a-secure-open-source-ai-agent-after-seeing-openclaws-512-cves-187p</link>
      <guid>https://dev.to/santosh_t_637f7c9257441a5/why-i-built-a-secure-open-source-ai-agent-after-seeing-openclaws-512-cves-187p</guid>
      <description>&lt;p&gt;OpenClaw is everywhere. 180K+ GitHub stars. Baidu integrated it. Elon Musk tweeted about it.&lt;/p&gt;

&lt;p&gt;But if you're a security professional, it's terrifying:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;512 vulnerabilities&lt;/strong&gt; disclosed (8 critical)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One-click remote code execution&lt;/strong&gt; via malicious links&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;230+ malicious skills&lt;/strong&gt; uploaded to ClawHub&lt;/li&gt;
&lt;li&gt;Gateway binds &lt;strong&gt;0.0.0.0 by default&lt;/strong&gt; — 30,000+ instances exposed&lt;/li&gt;
&lt;li&gt;Credentials and memories stored in &lt;strong&gt;plaintext&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No skill signing&lt;/strong&gt; — anyone can upload anything&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This matters because personal AI agents aren't chatbots. They have access to your filesystem, your email, your credentials, your shell. An insecure agent is an open door.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I'm a security engineer with 15+ years in the industry. I built &lt;strong&gt;Gulama&lt;/strong&gt; with one principle: &lt;strong&gt;security isn't a feature you add later — it's the foundation you build on.&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  15+ Security Mechanisms
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Mechanism&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;AES-256-GCM encryption&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;All credentials and memories encrypted at rest&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Sandboxed execution&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Every tool runs in bubblewrap/Docker sandbox&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Ed25519-signed skills&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;No unsigned code runs, ever&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Policy engine&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Cedar-inspired deterministic authorization&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Canary tokens&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Prompt injection detection&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Egress filtering + DLP&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Prevents data exfiltration&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Loopback binding&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Gateway binds 127.0.0.1 ONLY&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Hash-chain audit&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Tamper-proof cryptographic audit trail&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  But Also a Real Agent
&lt;/h3&gt;

&lt;p&gt;Gulama isn't just a security demo. It's a full-featured personal AI agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;100+ LLM providers&lt;/strong&gt; via LiteLLM — Anthropic, OpenAI, DeepSeek, Groq, Ollama (free/local), and more&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;19 built-in skills&lt;/strong&gt; — files, shell, web, browser, email, calendar, GitHub, Notion, Spotify, voice, MCP bridge&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;10 communication channels&lt;/strong&gt; — CLI, Telegram, Discord, Slack, WhatsApp, Matrix, Teams, Google Chat, Web UI, Voice Wake&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full MCP support&lt;/strong&gt; — both server and client&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-agent orchestration&lt;/strong&gt; — spawn background sub-agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RAG-powered memory&lt;/strong&gt; — ChromaDB vector search&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-modifying&lt;/strong&gt; — the agent writes its own new skills at runtime (sandboxed)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;5 autonomy levels&lt;/strong&gt; — from "ask before everything" to full autopilot&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Side-by-Side: Gulama vs OpenClaw
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Gulama&lt;/th&gt;
&lt;th&gt;OpenClaw&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Security mechanisms&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;15+ built into core&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;~0&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Memory encryption&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;AES-256-GCM&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;None (plaintext)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Skill signing&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Ed25519 mandatory&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sandbox&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;bubblewrap/Docker&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Container-only&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Prompt injection defense&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Canary tokens&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MCP support&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Full server + client&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-agent&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Background sub-agents&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LLM providers&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;100+&lt;/strong&gt; via LiteLLM&lt;/td&gt;
&lt;td&gt;~5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Communication channels&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;10&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;CLI-focused&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;gulama
gulama setup
gulama chat
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. 60 seconds to a secure AI agent.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/san-techie21/gulama-bot" rel="noopener noreferrer"&gt;github.com/san-techie21/gulama-bot&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PyPI&lt;/strong&gt;: &lt;a href="https://pypi.org/project/gulama/" rel="noopener noreferrer"&gt;pypi.org/project/gulama&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;License&lt;/strong&gt;: MIT&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Security shouldn't be an afterthought. Especially when the agent has access to your files, emails, and credentials.&lt;/p&gt;

&lt;p&gt;Happy to answer questions in the comments!&lt;/p&gt;

</description>
      <category>security</category>
      <category>opensource</category>
      <category>ai</category>
      <category>python</category>
    </item>
  </channel>
</rss>
