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

推荐订阅源

The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
Vercel News
Vercel News
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
The Cloudflare Blog
宝玉的分享
宝玉的分享
V
V2EX
Microsoft Azure Blog
Microsoft Azure Blog

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
We built a free open source alternative to Wiz for Azure ...
Vishnu Ajith · 2026-05-16 · via DEV Community

Enterprise cloud security tools like Wiz, Prisma Cloud, and
Microsoft Defender for Cloud cost upwards of $500,000 per year.
Most organisations running on Azure simply cannot afford them.

So we built OpenShield — a free, open source Cloud Security
Posture Management (CSPM) platform for Azure.

What is OpenShield

OpenShield scans your Azure subscription for misconfigurations,
maps every finding to compliance frameworks, and ships an
automated remediation playbook for every single rule.

It is built in Python, MIT licensed, and completely free.

github.com/openshield-org/openshield

What it detects

OpenShield currently has 20+ scan rules across six categories:

  • Storage - public blob access, missing lifecycle policies, disabled diagnostic logging
  • Network — open SSH/RDP, missing NSGs, no DDoS protection, WAF disabled, VPN using IKEv1, Network Watcher not enabled
  • Identity — overprivileged service principals, MFA not enforced, unrestricted guest access in Entra ID
  • Database — public PostgreSQL access, SQL auditing disabled
  • Compute — VMs with no NSG, unencrypted disks
  • Key Vault — soft delete disabled, public network access, diagnostic logging disabled

Every rule returns a structured finding with the resource ID,
description, remediation steps, and a link to the playbook.

Compliance mapping

Every finding is automatically mapped to four frameworks:

  • CIS Azure Benchmark
  • NIST CSF
  • ISO 27001
  • SOC 2 Type II

This means you get compliance posture out of the box with
no manual mapping required.

Remediation playbooks

This is the part that makes OpenShield different from most
open source security tools.

Every scan rule ships with a hardened CLI playbook. When you
get a finding, you do not just learn what is wrong — you get
the exact command to fix it.

Example playbook for AZ-STOR-004 (storage diagnostic logging):

./fix_az_stor_004.sh my-resource-group my-storage-account \
  /subscriptions/.../resourceGroups/log-rg/.../logstore

Enter fullscreen mode Exit fullscreen mode

Playbooks are hardened with input validation, shell injection
prevention, secure temp file handling, and confirmation prompts
before making any changes.

Microsoft Sentinel integration

OpenShield pushes findings directly to Microsoft Sentinel via
Log Analytics. Four KQL detection rules are included out of
the box:

  • HIGH severity findings in the last 24 hours
  • Misconfiguration wave detection
  • Persistent misconfigurations
  • New resource type critical findings

This means you get SIEM-level visibility from a free open
source tool.

The API

A Flask REST API exposes scan results, compliance scores, and
findings data. It is deployed on Render and live at:

https://openshield-api.onrender.com

Endpoints include:

  • GET /api/findings — list all findings with filters
  • GET /api/score — security posture score (0-100)
  • GET /api/compliance/cis — CIS compliance breakdown
  • GET /api/compliance/nist — NIST compliance breakdown
  • POST /api/scans/trigger — trigger a live scan

CI pipeline

Every pull request runs seven automated checks:

  1. Python syntax check on all rule files
  2. Rule structure validation and RULE_ID uniqueness
  3. Hardcoded credential scan
  4. Playbook existence and bash syntax validation
  5. Compliance JSON validation across all four frameworks
  6. API syntax check
  7. Compliance vs rule cross-reference

This means every contribution is validated before it touches
the main branch.

How to run it

git clone https://github.com/openshield-org/openshield
cd openshield
pip install -r requirements.txt

cp .env.example .env
# Add your Azure credentials to .env

python scanner/engine.py

Enter fullscreen mode Exit fullscreen mode

You need an Azure service principal with Reader role on your
subscription. Full setup guide is in the repo.

How it was built

OpenShield was built in public by students and engineers from
Ulster University, Southampton Solent University, and Middlesex
University alongside researchers at Quentangle Quantum Systems
in London.

Every contributor has a PR merged into a production grade open
source security tool. That goes on their GitHub profile and CV
permanently.

Contributing

OpenShield is actively looking for contributors. If you want
to add a scan rule, write a remediation playbook, or improve
the compliance mappings, the contributing guide gets you
making your first PR in under 30 minutes.

github.com/openshield-org/openshield

Good first issues are labelled and waiting. The whole team
is available on Discord to help you through your first PR.

What is next

  • React dashboard with live demo URL
  • 30+ scan rules
  • BSides Birmingham conference talk
  • OWASP project listing

If you work in cloud security and want a free tool that
actually works, or you want your first open source contribution
on a real security project — come build with us.

github.com/openshield-org/openshield