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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

Aikido Security's Blog

Axios CVE-2026-40175: a critical bug that’s… not exploitable GlassWorm goes native: New Zig dropper infects every IDE on your machine Aikido Attack finds multiple 0-days in Hoppscotch The cybersecurity doomerism around Mythos doesn't match what we see on the ground axios compromised on npm: maintainer account hijacked, RAT deployed Popular telnyx package compromised on PyPI by TeamPCP Aikido × Lovable: Vibe, Fix, Ship CanisterWorm Gets Teeth: TeamPCP's Kubernetes Wiper Targets Iran TeamPCP deploys CanisterWorm on NPM following Trivy compromise Security testing is validating software that no longer exists Aikido Recognized by Frost & Sullivan with the 2026 Customer Value Leadership Award in ASPM GlassWorm Hides a RAT Inside a Malicious Chrome Extension fast-draft Open VSX Extension Compromised by BlokTrooper Glassworm Strikes Popular React Native Phone Number Packages Glassworm Is Back: A New Wave of Invisible Unicode Attacks Hits Hundreds of Repositories How Security Teams Fight Back Against AI-Powered Hackers Introducing Betterleaks, an open source secrets scanner by the author of Gitleaks Trump’s 2026 cybersecurity strategy: From compliance to consequence How does AI pentesting work with compliance? What continuous pentesting actually requires Rare Not Random: Using Token Efficiency for Secrets Scanning Persistent XSS/RCE using WebSockets in Storybook’s dev server Why Determinism Is Still a Necessity in Security WAF vs. RASP vs. ADR Introducing Aikido Infinite: A new model of self-securing software How Aikido secures AI pentesting agents by design Astro Full-Read SSRF via Host Header Injection How to Get Your Board to Care About Security (Before a Breach Forces the Issue) What is Slopsquatting? The AI Package Hallucination Attack Already Happening SvelteSpill: A Cache Deception Bug in SvelteKit + Vercel
Building Fast, Staying Secure: Supabase’s Approach to Sec...
2025-11-06 · via Aikido Security's Blog

As part of Aikido’s Security Masterclass series, Mackenzie Jackson sat down with Bill Harmer (CISO, Supabase) and Etienne Stalmans (Security Engineer, Supabase) to explore how Supabase approaches security as part of design, not something to bolt on later.

From Row Level Security (RLS) to the risks of AI-assisted coding, the discussion focused on what it takes to build fast and stay secure.

Security starts with the data

Supabase’s philosophy begins with the data itself.

“We’ve built Supabase from a developer’s point of view. Everything starts with the data. Why build secondary layers when you can control everything in one place.” - Bill Harmer, CISO Supabase

Instead of spreading security logic across services, Supabase brings it closer to where the data lives. The closer the control, the fewer chances there are for things to go wrong.

Building with first principles

For Etienne, this approach changes how developers think about building software.

“When you move security closer to your data, you start thinking about it from first principles. Once it clicks, you speed up development and stay confident it’s secure.” - Etienne Stalmans, Security Engineer Supabase

By making data ownership and access part of application design, teams remove the guesswork that comes with layered permission systems.

Anonymous or authenticated

Supabase keeps access control simple. Users are either anonymous or authenticated, nothing in between.

“All updates on data must be logged, who did what, when, and why. Anonymous users get limited access. Authenticated users get exactly what they need and nothing more.” - Bill Harmer, CISO Supabase

Etienne demonstrated this during the session using a live recipe-sharing app.

Public recipes were visible to everyone. Private recipes were visible only to their owners or specific shared users.

A few lines of SQL, backed by Row Level Security, handled the entire model.

Row Level Security is non-negotiable

RLS defines who can see or change which rows of data. It’s one of the most powerful features in Postgres and one of the easiest to overlook.

“That’s all it takes, one missing check and everything’s exposed.” - Etienne Stalmans, Security Engineer Supabase

Etienne shared an example where an AI-generated policy accidentally returned every record in a table because it skipped one condition.

The fix was a single correction to the query, one line that closed a major security gap.

Bill summed it up simply:

“We want security as close to the data as possible. The closer it is, the less room there is for error.” - Bill Harmer, CISO Supabase

Testing your policies with pgTAP

Security doesn’t stop once the app ships. Etienne showed how Supabase uses pgTAP to test database policies continuously.

“You can prove what you believe is secure actually is. These tests keep you honest.” - Etienne Stalmans, Security Engineer Supabase

Each test checks what matters most:

  • Public users only see public data
  • Authenticated users only see what’s theirs
  • Policies enforce the expected limits every time

This continuous assurance makes sure small mistakes don’t grow into data leaks.

Security that scales

Supabase runs RLS across millions of users and large workloads without issues.

“We run it everywhere, even at scale. No issues, no excuses.” - Etienne Stalmans, Security Engineer Supabase

By enforcing security at the database level, Supabase keeps logic consistent no matter how complex the application becomes.

“Just make it work” the dangerous prompt

Bill closed the session with a warning for anyone using AI to generate code.

“Just because it works doesn’t mean it’s production ready.” - Bill Harmer, CISO Supabase
“If you tell an AI to make something work, it might remove the very security checks that protect you.” - Bill Harmer, CISO Supabase

AI models don’t understand intent. They’ll do whatever it takes to achieve the goal you set, even if that means disabling RLS or deleting authentication logic.

The danger isn’t using AI, it’s using it without guidance.

“The model’s not malicious. It’s doing its job. But it doesn’t know your intent. That’s your job.” - Bill Harmer, CISO Supabase

Building securely by default

Security isn’t a blocker. It’s how you move faster without second-guessing what you ship.

Supabase proves that when security lives at the data layer, it becomes part of the way you build, not an afterthought.

Watch the full Masterclass.