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

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - blindCodes/stealth-benchmark
html5ninja · 2026-05-02 · via Hacker News - Newest: "AI"

Open-source tool that simulates what coding interview platforms detect.
Test your setup before the real thing.

Built by blind.codes — the invisible AI assistant for coding interviews.

Live demo

👉 blindcodes.github.io/stealth-benchmark

What it detects

Check Risk Method
Window focus lost 🔴 High blur / focus events
Tab switch 🔴 High Page Visibility API
Global shortcut (Cmd+Shift+[key]) 🔴 High keydown event
DevTools open 🟡 Medium Window size delta + console getter heuristic
Multiple screens 🟡 Medium window.screen.isExtended
Clipboard access granted 🟡 Medium Permissions API
Screen share availability 🔵 Low navigator.mediaDevices.getDisplayMedia
User agent / OS 🔵 Low navigator.userAgent
Timezone & locale 🔵 Low Intl.DateTimeFormat

What it can't detect (browser limitation)

  • Running processes — requires a native app
  • Specific overlay windows — not accessible from the web
  • Kernel-level hooks

Usage

Just open index.html in a browser. No build step, no dependencies.

git clone https://github.com/blindCodes/stealth-benchmark
cd stealth-benchmark
open index.html

Contributing

PRs welcome. If you know of a detection technique used by interview platforms that isn't covered, open an issue or submit a PR.

Each check follows this interface:

{
  id: 'my-check',         // unique identifier
  name: 'My Check',       // display name
  desc: 'What it does',   // shown under the name
  risk: 'high',           // 'high' | 'medium' | 'low'
  run: async () => ({
    pass: true,           // true = safe, false = flagged, null = info only
    detail: 'message'     // shown in the event log
  })
}

License

MIT