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

推荐订阅源

云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
博客园_首页
The GitHub Blog
The GitHub Blog
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
D
Docker
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
小众软件
小众软件
I
InfoQ
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - securient/ideviewer-oss: Security scanner for de...
securient · 2026-05-22 · via Hacker News: Show HN

A cross-platform security tool that scans developer workstations for supply chain threats — risky IDE extensions, vulnerable dependencies, plaintext secrets, insecure AI tool configurations, and MCP server permissions. Built as a single Go binary with an optional self-hosted portal for team-wide visibility.

Documentation | Releases | Portal Container

Why IDEViewer?

Developer workstations are one of the most privileged and least monitored attack surfaces. IDE extensions run with full process permissions, npm packages execute lifecycle hooks silently, AI coding assistants connect to external services, and secrets sit in plaintext across config files. EDR and SCA tools don't see any of this. IDEViewer does.

Key Features

Feature Description
IDE Extension Analysis Scans 7+ IDEs, analyzes extension permissions against a 4-tier risk model (Critical/High/Medium/Low)
AI Tool Detection Discovers Claude Code, Cursor, Kiro, OpenClaw — their skills, MCP servers, cloud integrations, and granted permissions
AI Risk Scoring Flags insecure configurations: wildcard bash access, plaintext API keys, autonomous execution, unencrypted transports
Extension Dependency Scanning Inventories packages bundled inside VS Code node_modules and JetBrains plugin JARs — invisible to standard SCA
Secrets Detection Finds plaintext credentials in .env files and git history. Never transmits actual values — only type and location
CVE Correlation All packages (project + extension-bundled) checked against OSV.dev for known vulnerabilities
Real-Time Monitoring Filesystem watchers detect extension changes within 30 seconds
Tamper Detection SHA-256 checksums on daemon binary, config, and service files with instant alerting
Git Hook Bypass Detection Detects --no-verify usage and reports to portal
SARIF Output Integrates with GitHub Code Scanning, CodeQL, and CI/CD pipelines

Screenshots

Dashboard Host Detail
Dashboard Host Status
Extension Analysis Secrets Detection
Extensions Secrets

Quick Start

Option A: Download a Pre-built Binary

Download from the Releases page:

Platform File
macOS (Apple Silicon) IDEViewer-*-arm64.pkg
Windows (64-bit) IDEViewer-Setup-*.exe
Linux (amd64) ideviewer_*_amd64.deb
Linux (arm64) ideviewer_*_arm64.deb

Option B: Build from Source

git clone https://github.com/securient/ideviewer-oss.git
cd ideviewer-oss
make build          # Single platform
make build-all      # All platforms

Standalone Scanning (No Portal)

ideviewer scan              # Scan IDEs and extensions
ideviewer secrets           # Detect plaintext secrets
ideviewer packages          # Inventory all packages
ideviewer dangerous         # List high-risk extensions
ideviewer scan --output-sarif > results.sarif  # SARIF for CI/CD

Portal Setup

The portal is a self-hosted web dashboard for monitoring multiple developer machines. It's optional — the CLI works standalone.

One-Command Start

./start.sh              # Local dev (SQLite, zero config)
./start.sh --docker     # Docker + PostgreSQL
./start.sh --aws        # Deploy to AWS (ECS + RDS + ALB)

Default login: admin / ideviewer (you'll be prompted to change the password).

Connect a Daemon

ideviewer register \
  --customer-key YOUR-KEY \
  --portal-url http://localhost:5000

The daemon starts automatically after registration and runs continuously in the background.

Portal Container

docker pull ghcr.io/securient/ideviewer-oss-portal:latest
docker run -p 8080:8080 \
  -e SECRET_KEY=$(openssl rand -base64 32) \
  -e DATABASE_URL=postgresql://user:pass@host:5432/ideviewer \
  ghcr.io/securient/ideviewer-oss-portal:latest

What Gets Detected

Supported IDEs

IDE Extensions Path
VS Code ~/.vscode/extensions
Cursor ~/.cursor/extensions
VSCodium ~/.vscode-oss/extensions
Kiro ~/.kiro/extensions
JetBrains (IntelliJ, PyCharm, WebStorm, GoLand, CLion, Rider, PhpStorm, RubyMine, DataGrip) ~/.config/JetBrains/*/plugins
Sublime Text ~/Library/Application Support/Sublime Text/Packages
Vim / Neovim ~/.vim, ~/.config/nvim
Xcode /Applications/Xcode.app

Supported Package Managers

Language Manager Detection
Python pip, pipenv, poetry Global + project-level
Node.js npm Global + project + extension-bundled
Go go ~/go/bin + go.mod
Rust cargo Global + Cargo.lock
Ruby gem Global + Gemfile.lock
PHP composer composer.lock
Java maven JetBrains plugin JARs
macOS Homebrew Formula + casks

AI Tools & MCP Detection

Tool What's Detected
Claude Code Enabled skills/plugins, cloud MCP servers (Gmail, Calendar, etc.), per-project permissions (Bash, Read, Write, MCP tools), API keys (redacted)
Cursor MCP server configs from mcp.json and VS Code settings, remote MCP servers, env vars, auto-approve permissions
Kiro MCP server configs from ~/.kiro/settings/mcp.json, remote MCP servers, env vars, auto-approve permissions
OpenClaw LLM providers, Slack/Telegram integrations, bot tokens (redacted), autonomous execution flags, insecure transport

Each component is classified by type (skill, mcp-server, cloud-mcp, integration, permission) and assigned a risk score:

Risk Examples
Critical Wildcard bash access (Bash(*)), plaintext API keys
High Autonomous execution enabled, external integrations, insecure HTTP transport, auto-approved MCP tools
Medium Cloud MCP with data access, shell command permissions
Low Skills with network access

Extension Risk Model

Level Criteria Examples
Critical Full system compromise potential Wildcard activation (*), filesystem + shell
High Elevated permissions Authentication, terminal access, URI handlers
Medium Potentially concerning Startup execution, debugger access
Low Standard permissions Commands, keybindings, themes

Portal Features

  • Dashboard — security posture overview across all registered machines
  • Host Detail — tabbed view: Extensions, Packages, Secrets, AI Tools
  • AI Tools Tab — unified table of all AI components with type/risk filters and risk scores
  • Extension Detail — marketplace data, permissions, risk assessment, cross-host installation
  • Package Detail — source tracking (project vs extension-bundled), lifecycle hooks, CVEs
  • Multi-Select Filters — combine filters (e.g., "vulnerable" + "extension deps")
  • Global Search — search across hosts, extensions, packages, AI tools, and MCP servers
  • Real-Time Updates — live update indicator when filesystem watcher detects changes
  • On-Demand Scans — trigger scans from the portal UI
  • Tamper Alerts — instant alerts on daemon file modification/deletion
  • CSV Export — export any data view
  • Google OAuth — optional SSO alongside username/password
  • Database Migrations — Alembic-managed schema for safe upgrades

Deployment

AWS (ECS Fargate + RDS)

./start.sh --aws    # Guided wizard with cost estimates

Creates: VPC, ALB (HTTPS optional), ECS Fargate (autoscaling 1-4), RDS PostgreSQL, Secrets Manager, CloudWatch, ECR. See deploy/README.md.

MDM (JAMF / Mosyle / Kandji)

For managed fleets, deploy the PPPC profile first (grants Full Disk Access silently), then the .pkg:

# 1. Deploy PPPC profile: deploy/mdm/ideviewer-tcc.mobileconfig
# 2. Deploy .pkg installer via MDM
# 3. Register silently via post-install script

See deploy/mdm/README.md for step-by-step JAMF instructions.

Linux (systemd)

sudo dpkg -i ideviewer_0.3.0_amd64.deb
ideviewer register --customer-key KEY --portal-url URL
sudo systemctl enable --now ideviewer

Privacy by Design

  • Secret values are never transmitted — only type, location, and redacted indicators
  • AI conversation content is never read — only config metadata and permission sets
  • All scanning happens locally on the developer's machine
  • The daemon reports only security-relevant metadata to the portal

Uninstalling

# macOS
sudo ideviewer-uninstall

# Linux
sudo dpkg -P ideviewer

# Windows
Settings > Apps > IDE Viewer > Uninstall

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

License

Apache License 2.0 — Copyright 2024-2026 Securient

See LICENSE for the full text.