
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
A free, open-source CLI tool for comprehensive Supabase security auditing.
Scan any Supabase-powered website instantly:
npx supasec scan https://myapp.com
npx supasec scan <url>
npm install -g supasec
supasec scan <url>
# Scan a website
supasec scan https://myapp.com
# Scan with authentication
supasec scan https://myapp.com --project-url https://abc.supabase.co --service-key xxx
# Deep scan with RLS fuzzing
supasec scan https://myapp.com --deep --project-url https://abc.supabase.co --anon-key xxx
# Scan local project
supasec scan --local
# Create security snapshot
supasec snapshot create --name pre-deploy-v1.0.6
# Compare snapshots
supasec snapshot diff pre-deploy-v1.0.6 post-deploy-v1.0.6
# Terminal output (default)
supasec scan https://myapp.com
# JSON output
supasec scan https://myapp.com --format json
# HTML report
supasec scan https://myapp.com --format html --output report.html
# Fail on critical or high severity issues
supasec scan https://myapp.com --fail-on critical,high
# Quiet mode for CI
supasec scan https://myapp.com --format json --quiet --output audit.json
Fix vulnerabilities interactively:
supasec fix --interactive
Or apply fixes automatically:
supasec fix --auto --backup
Note: The fix command is planned for a future release.
SupaSec performs comprehensive security checks across multiple categories:
USING (true))🔍 SupaSec - Supabase Security Audit v1.0.6
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🎯 Target: https://myapp.com
⏱️ Started: 2026-01-28T14:23:15.000Z
✓ Detected Supabase project
Found 12 tables, 8 RPCs, 3 storage buckets
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📊 SCAN SUMMARY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
❌ CRITICAL: 1 issues
⚠️ HIGH: 2 issues
⚡ MEDIUM: 1 issues
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
❌ CRITICAL (1 issues)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
┌─ RLS-001: Table 'users' has RLS disabled
│ The table 'users' does not have Row Level Security enabled.
│
│ Location: public.users
│ Impact: Complete exposure of 1847 records
│
│ Fix: Enable Row Level Security on table 'users'
│ SQL:
│ ALTER TABLE public.users ENABLE ROW LEVEL SECURITY;
│ CREATE POLICY "Users can only access own data"
│ ON public.users FOR SELECT
│ USING (auth.uid() = id);
└
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📈 SECURITY GRADE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Grade D - 45/100
Below average - serious issues found.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🛠️ QUICK ACTIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Fix critical issues now:
$ supasec fix --interactive
View detailed report:
$ supasec report --format html --output report.html
name: Security Audit
on: [push, pull_request]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run SupaSec Security Scan
run: |
npx supasec scan https://staging.myapp.com \
--format json \
--fail-on critical,high \
--output audit.json
- name: Upload Report
if: always()
uses: actions/upload-artifact@v3
with:
name: security-report
path: audit.json
security_scan:
stage: security
image: node:18
script:
- npx supasec scan $STAGING_URL
--format json
--output audit.json
--fail-on critical,high
artifacts:
paths:
- audit.json
We welcome contributions! Please see our Contributing Guide for details.
# Clone the repository
git clone https://github.com/yourusername/supasec.git
cd supasec
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode
npm run dev
# Run tests
npm test
MIT License - see LICENSE file for details.
Made with 🔒 by the SupaSec Team
FAQs
A free, open-source CLI tool for comprehensive Supabase security auditing
We found that supasec demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.