The Lab · 2026-03-25 14:27:45 · GitHub Issues
A critical security issue has been raised within a software project, demanding the immediate implementation of automated dependency vulnerability scanning. The core demand is clear: network-level applications cannot afford supply chain attacks, and the current development process lacks automated auditing for third-part...
The Lab · 2026-04-06 17:27:18 · GitHub Issues
A critical vulnerability was missed by the Siege security testing platform not due to a flaw in its agents, but because of a fundamental design limitation. Siege's attack surface discovery operates on an 'inside-out' model, scoped entirely by a pre-defined file manifest. Any API endpoint, route, or function that exists...
The Lab · 2026-04-07 13:27:16 · GitHub Issues
A critical flaw in the OSV vulnerability scanning system leaves it vulnerable to indefinite hangs. The scanner makes external HTTP requests to the `api.osv.dev` service without configuring any timeout parameters. This omission means that if the external API becomes slow or unresponsive, the worker processes executing t...
The Lab · 2026-04-17 05:22:40 · GitHub Issues
Checkmarx has rolled out a major update to its Visual Studio extension, introducing five realtime security scanners that provide developers with instant feedback on vulnerabilities as they write code. This move achieves feature parity with the company's JetBrains plugin, shifting security analysis from a post-commit au...
The Lab · 2026-04-18 14:22:39 · GitHub Issues
开源安全工具 Dependi-LSP 完成了一项关键升级,其扫描引擎现在能够解析并利用项目锁文件,以精确识别包括传递性依赖在内的软件漏洞。这项功能解决了长期以来依赖扫描工具的一个盲点:许多安全漏洞并非直接由项目引用的库引入,而是通过这些直接依赖项所依赖的更深层库(即传递性依赖)间接引入。传统扫描方法可能遗漏这些隐藏风险,而新功能通过构建依赖关系图,实现了对漏洞的完整溯源。
此次更新引入了 `LockfileGraph` 和 `LockfilePackage` 数据结构,并采用防循环的深度优先搜索算法及反向索引,将传递性漏洞归因的计算复杂度从潜在的 O(T×D×N) 优化至 O(T+D×N)。核心突破在于新增了对 9 种主流锁文件格...