增强系统级实体覆盖摘要与工作台索引
这个提交包含在:
文件差异内容过多而无法显示
加载差异
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"generated_at": "2026-03-20T13:41:45+00:00",
|
||||
"generated_at": "2026-03-20T15:46:06+00:00",
|
||||
"title": "\u5f53\u524d\u67b6\u6784\u5e93",
|
||||
"summary": "\u5de5\u4f5c\u53f0\u3001\u63a7\u5236\u9762\u3001\u6570\u636e\u5c42\u3001\u6388\u6743\u8fb9\u754c\u4e0e\u7cfb\u7edf\u8986\u76d6\u7684\u5f53\u524d\u771f\u503c\u89c6\u56fe\u3002",
|
||||
"sections": [
|
||||
@@ -57,7 +57,7 @@
|
||||
},
|
||||
{
|
||||
"label": "\u751f\u6210\u65f6\u95f4",
|
||||
"value": "2026-03-20T13:41:45+00:00"
|
||||
"value": "2026-03-20T15:46:06+00:00"
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
@@ -370,6 +370,11 @@
|
||||
"href": "/systems.json",
|
||||
"description": "\u7cfb\u7edf\u7ea7\u8986\u76d6\u4e0e\u6d4f\u89c8\u5668\u8bc1\u636e\u6458\u8981\u3002"
|
||||
},
|
||||
{
|
||||
"label": "entities.json",
|
||||
"href": "/entities.json",
|
||||
"description": "\u5206\u5c42\u5b9e\u4f53\u7d22\u5f15\u3001\u5b9e\u4f53\u72b6\u6001\u548c\u7cfb\u7edf\u5f52\u5c5e\u3002"
|
||||
},
|
||||
{
|
||||
"label": "advisories.json",
|
||||
"href": "/advisories.json",
|
||||
|
||||
@@ -65,6 +65,7 @@ const DATA_HUB_ITEMS = [
|
||||
{ title: "entity-queues.json", href: "/data/entity-queues.json", description: "discovery/history/latest/workflow 四类队列摘要。", badge: "json" },
|
||||
{ title: "runs.json", href: "/runs.json", description: "最近运行的结构化详情,可用于 UI 和调试。", badge: "json" },
|
||||
{ title: "systems.json", href: "/systems.json", description: "系统级覆盖、分类、更新时间和浏览器证据统计。", badge: "json" },
|
||||
{ title: "entities.json", href: "/entities.json", description: "分层实体索引、实体状态和系统归属。", badge: "json" },
|
||||
{ title: "advisories.json", href: "/advisories.json", description: "漏洞条目元数据、来源和 secure-code 主题。", badge: "json" },
|
||||
{ title: "profiles.json", href: "/profiles.json", description: "复现档案元数据、成功判据和 browser assertions。", badge: "json" },
|
||||
{ title: "architecture.json", href: "/architecture.json", description: "当前架构库的结构化真值。", badge: "json" },
|
||||
@@ -94,6 +95,7 @@ const state = {
|
||||
summary: null,
|
||||
runs: [],
|
||||
systems: [],
|
||||
entities: [],
|
||||
advisories: {},
|
||||
profiles: {},
|
||||
architecture: null,
|
||||
@@ -599,6 +601,9 @@ function renderSystemCards(items, compact = false) {
|
||||
const total = Math.max(Number(system.total || 0), 1);
|
||||
const verified = Number(system.verified_real || 0) + Number(system.verified_synthetic || 0);
|
||||
const coverage = Math.round((verified / total) * 100);
|
||||
const entitySummary = system.entity_summary || {};
|
||||
const topEntities = system.top_entities || [];
|
||||
const backlogPreview = system.backlog_preview || [];
|
||||
return `
|
||||
<article class="system-card ${compact ? "system-card-compact" : ""}">
|
||||
<div class="timeline-head">
|
||||
@@ -610,8 +615,28 @@ function renderSystemCards(items, compact = false) {
|
||||
<span class="tag">真实 ${escapeHtml(system.verified_real || 0)}</span>
|
||||
<span class="tag">合成 ${escapeHtml(system.verified_synthetic || 0)}</span>
|
||||
<span class="tag">阻塞 ${escapeHtml(system.blocked || 0)}</span>
|
||||
<span class="tag">实体 ${escapeHtml(entitySummary.cataloged_entity_total || 0)}</span>
|
||||
<span class="tag">backlog ${escapeHtml(entitySummary.candidate_entity_total || 0)}</span>
|
||||
</div>
|
||||
<div class="meter"><span style="--fill:${coverage}%"></span></div>
|
||||
${compact ? "" : `
|
||||
<div class="plan-grid" style="margin-top:12px;">
|
||||
<article class="plan-card">
|
||||
<span class="plan-label">实体覆盖</span>
|
||||
<div class="plan-copy">cataloged ${escapeHtml(entitySummary.cataloged_entity_total || 0)} · child ${escapeHtml(entitySummary.child_entity_total || 0)} · plugins ${escapeHtml(entitySummary.plugin_total || 0)}</div>
|
||||
</article>
|
||||
<article class="plan-card">
|
||||
<span class="plan-label">队列与缺口</span>
|
||||
<div class="plan-copy">history complete ${escapeHtml(entitySummary.history_full_complete_count || 0)} · latest green ${escapeHtml(entitySummary.latest_green_count || 0)} · version gap ${escapeHtml(entitySummary.version_gap_entity_count || 0)}</div>
|
||||
</article>
|
||||
</div>
|
||||
${(topEntities.length || backlogPreview.length) ? `
|
||||
<div class="tag-row" style="margin-top:10px;">
|
||||
${topEntities.map((item) => `<span class="tag">${escapeHtml(item.entity_type)} · ${escapeHtml(item.display_name)} · ${escapeHtml(item.advisory_count || 0)}</span>`).join("")}
|
||||
${backlogPreview.map((item) => `<span class="tag">${escapeHtml(item.entity_type)} backlog · ${escapeHtml(item.display_name)}</span>`).join("")}
|
||||
</div>
|
||||
` : ""}
|
||||
`}
|
||||
<div class="detail-actions" style="margin-top:12px;">
|
||||
<button class="button button-secondary button-small" type="button" data-filter-key="system" data-filter-value="${escapeHtml(system.system_id)}">锁定系统</button>
|
||||
<a class="button button-secondary button-small" href="${escapeHtml(buildUrl("runs", { system: system.system_id, run: null }))}">查看运行</a>
|
||||
@@ -1609,10 +1634,11 @@ async function loadData(preserveSelection = true) {
|
||||
renderSyncState("loading", "刷新中", `本地时间 ${new Date().toLocaleTimeString("zh-CN", { hour12: false })}`);
|
||||
|
||||
try {
|
||||
const [summary, runs, systems, advisories, profiles, architecture, completeness, entityCompleteness, sourceHealth, alerts, monitorSummary] = await Promise.all([
|
||||
const [summary, runs, systems, entities, advisories, profiles, architecture, completeness, entityCompleteness, sourceHealth, alerts, monitorSummary] = await Promise.all([
|
||||
fetchJson("/summary.json"),
|
||||
fetchJson("/runs.json"),
|
||||
fetchJson("/systems.json"),
|
||||
fetchJson("/entities.json"),
|
||||
fetchJson("/advisories.json"),
|
||||
fetchJson("/profiles.json"),
|
||||
fetchJson("/architecture.json"),
|
||||
@@ -1626,6 +1652,7 @@ async function loadData(preserveSelection = true) {
|
||||
state.summary = summary;
|
||||
state.runs = runs;
|
||||
state.systems = systems;
|
||||
state.entities = entities;
|
||||
state.advisories = advisories;
|
||||
state.profiles = profiles;
|
||||
state.architecture = architecture;
|
||||
|
||||
文件差异内容过多而无法显示
加载差异
文件差异内容过多而无法显示
加载差异
文件差异内容过多而无法显示
加载差异
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"generated_at": "2026-03-20T13:41:44+00:00",
|
||||
"generated_at": "2026-03-20T15:46:05+00:00",
|
||||
"discovery_queue": {
|
||||
"count": 17,
|
||||
"items": [
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"generated_at": "2026-03-20T13:41:26+00:00",
|
||||
"generated_at": "2026-03-20T15:45:58+00:00",
|
||||
"active_source_count": 101,
|
||||
"green_source_count": 0,
|
||||
"source_failure_count": 101,
|
||||
"open_alert_count": 101,
|
||||
"resolved_alert_count": 0,
|
||||
"last_fully_green_run": "2026-03-20T00:56:25+00:00",
|
||||
"green_source_count": 101,
|
||||
"source_failure_count": 0,
|
||||
"open_alert_count": 0,
|
||||
"resolved_alert_count": 101,
|
||||
"last_fully_green_run": "2026-03-20T15:45:58+00:00",
|
||||
"source_catalog": {
|
||||
"system_count": 62,
|
||||
"source_count": 179,
|
||||
@@ -14,7 +14,7 @@
|
||||
"ingest": {
|
||||
"new_count": 0,
|
||||
"updated_count": 0,
|
||||
"failure_count": 101,
|
||||
"failure_count": 0,
|
||||
"systems_touched": []
|
||||
},
|
||||
"validation": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"generated_at": "2026-03-20T09:24:12+00:00",
|
||||
"generated_at": "2026-03-20T15:45:44+00:00",
|
||||
"system_count": 62,
|
||||
"source_count": 179,
|
||||
"active_source_count": 101,
|
||||
|
||||
文件差异内容过多而无法显示
加载差异
@@ -87,7 +87,7 @@
|
||||
<h1>当前架构库镜像</h1>
|
||||
<div class="meta">工作台内置镜像页:当前架构库结构化数据镜像。</div>
|
||||
<pre>{
|
||||
"generated_at": "2026-03-20T13:41:45+00:00",
|
||||
"generated_at": "2026-03-20T15:46:06+00:00",
|
||||
"title": "当前架构库",
|
||||
"summary": "工作台、控制面、数据层、授权边界与系统覆盖的当前真值视图。",
|
||||
"sections": [
|
||||
@@ -145,7 +145,7 @@
|
||||
},
|
||||
{
|
||||
"label": "生成时间",
|
||||
"value": "2026-03-20T13:41:45+00:00"
|
||||
"value": "2026-03-20T15:46:06+00:00"
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
@@ -458,6 +458,11 @@
|
||||
"href": "/systems.json",
|
||||
"description": "系统级覆盖与浏览器证据摘要。"
|
||||
},
|
||||
{
|
||||
"label": "entities.json",
|
||||
"href": "/entities.json",
|
||||
"description": "分层实体索引、实体状态和系统归属。"
|
||||
},
|
||||
{
|
||||
"label": "advisories.json",
|
||||
"href": "/advisories.json",
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
<div class="meta">工作台内置镜像页:分层实体覆盖、history-full 完整度和 workflow 统计。</div>
|
||||
<pre># 分层实体覆盖与完整度报告
|
||||
|
||||
- 生成时间: `2026-03-20T13:41:44+00:00`
|
||||
- 生成时间: `2026-03-20T15:46:05+00:00`
|
||||
- 已编目实体: `97`
|
||||
- 待编目 backlog: `17`
|
||||
- history-full 已完成: `40`
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
<div class="meta">工作台内置镜像页:待编目 repo / 插件 / 包 backlog 与等待原因。</div>
|
||||
<pre># 分层实体发现 Backlog
|
||||
|
||||
- 生成时间: `2026-03-20T13:41:44+00:00`
|
||||
- 生成时间: `2026-03-20T15:46:05+00:00`
|
||||
- 待编目数量: `17`
|
||||
|
||||
| candidate_id | root_system | entity_type | risk | reason | waiting_for | source |
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
<div class="meta">工作台内置镜像页:active/retired source、replacement map 与覆盖摘要。</div>
|
||||
<pre># Source Catalog Audit
|
||||
|
||||
- generated_at: `2026-03-20T09:24:12+00:00`
|
||||
- generated_at: `2026-03-20T15:45:44+00:00`
|
||||
- systems: `62`
|
||||
- sources: `179`
|
||||
- active_sources: `101`
|
||||
|
||||
@@ -88,15 +88,15 @@
|
||||
<div class="meta">工作台内置镜像页:89 条 advisory 最新完整度、family 矩阵与 ingest 健康度。</div>
|
||||
<pre># 全库 Advisory 完整度报告
|
||||
|
||||
- 生成时间: `2026-03-20T13:41:45+00:00`
|
||||
- 生成时间: `2026-03-20T15:46:06+00:00`
|
||||
- 最新 advisory 完整度: `89/89` `verified-real`
|
||||
- 合成验证数量: `0`
|
||||
- 阻塞数量: `0`
|
||||
- 人工/待补证据数量: `0`
|
||||
- 完整度百分比: `100.0%`
|
||||
- active source 全绿: `0/101`
|
||||
- source open alerts: `101`
|
||||
- 最近一次 source 全绿: `2026-03-20T00:56:25+00:00`
|
||||
- active source 全绿: `101/101`
|
||||
- source open alerts: `0`
|
||||
- 最近一次 source 全绿: `2026-03-20T15:45:58+00:00`
|
||||
- 已编目实体: `97`
|
||||
- 待编目 backlog: `17`
|
||||
|
||||
@@ -129,111 +129,10 @@
|
||||
|
||||
## Ingest / Source 健康度
|
||||
|
||||
- source failures: `101`
|
||||
- source failures: `0`
|
||||
- active sources: `101`
|
||||
- green sources: `0`
|
||||
- open alerts: `101`
|
||||
- adminer::OSV Adminer::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- adobe-commerce::Adobe Magento Security Index::network::HTTPSConnectionPool(host='helpx.adobe.com', port=443): Max retries exceeded with url: /security/products/magento.html (Caused by NameResolutionError("HTTPSConnection(host='helpx.adobe.com', port=443): Failed to resolve 'helpx.adobe.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- angular::OSV Angular::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-httpd::Apache HTTPD Security::network::HTTPSConnectionPool(host='httpd.apache.org', port=443): Max retries exceeded with url: /security/vulnerabilities_24.html (Caused by NameResolutionError("HTTPSConnection(host='httpd.apache.org', port=443): Failed to resolve 'httpd.apache.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-httpd::CISA KEV Apache HTTPD::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-tomcat::Apache Tomcat Security::network::HTTPSConnectionPool(host='tomcat.apache.org', port=443): Max retries exceeded with url: /security-10.html (Caused by NameResolutionError("HTTPSConnection(host='tomcat.apache.org', port=443): Failed to resolve 'tomcat.apache.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-tomcat::CISA KEV Tomcat::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- aspnet-core::OSV ASP.NET Core::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- astro::OSV Astro::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- caddy::OSV Caddy::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- directus::Directus GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /directus/directus/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- directus::OSV Directus::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- discourse::Discourse Release Notes RSS::network::HTTPSConnectionPool(host='meta.discourse.org', port=443): Max retries exceeded with url: /tag/release-notes.rss (Caused by NameResolutionError("HTTPSConnection(host='meta.discourse.org', port=443): Failed to resolve 'meta.discourse.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- discourse::Discourse Security RSS::network::HTTPSConnectionPool(host='meta.discourse.org', port=443): Max retries exceeded with url: /tag/security.rss (Caused by NameResolutionError("HTTPSConnection(host='meta.discourse.org', port=443): Failed to resolve 'meta.discourse.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- discourse::OSV Discourse::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- django::Django Security Releases Archive::network::HTTPSConnectionPool(host='docs.djangoproject.com', port=443): Max retries exceeded with url: /en/dev/releases/security/ (Caused by NameResolutionError("HTTPSConnection(host='docs.djangoproject.com', port=443): Failed to resolve 'docs.djangoproject.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- django::Django Security Weblog::network::HTTPSConnectionPool(host='www.djangoproject.com', port=443): Max retries exceeded with url: /weblog/ (Caused by NameResolutionError("HTTPSConnection(host='www.djangoproject.com', port=443): Failed to resolve 'www.djangoproject.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- django::OSV Django::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- drupal::Drupal Security Advisories RSS::network::HTTPSConnectionPool(host='www.drupal.org', port=443): Max retries exceeded with url: /security/rss.xml (Caused by NameResolutionError("HTTPSConnection(host='www.drupal.org', port=443): Failed to resolve 'www.drupal.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- drupal::OSV Drupal::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- echo::OSV Echo::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- esbuild::OSV esbuild::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- express::OSV Express::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- fastify::OSV Fastify::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- flask::OSV Flask::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- ghost::Ghost GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /TryGhost/Ghost/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- ghost::OSV Ghost::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gin::OSV Gin::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gitea::OSV Gitea::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gitlab-ce::GitLab Advisory Database::network::HTTPSConnectionPool(host='gitlab.com', port=443): Max retries exceeded with url: /gitlab-org/advisories-community (Caused by NameResolutionError("HTTPSConnection(host='gitlab.com', port=443): Failed to resolve 'gitlab.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gitlab-ce::GitLab Security Releases Atom::network::HTTPSConnectionPool(host='about.gitlab.com', port=443): Max retries exceeded with url: /security-releases.xml (Caused by NameResolutionError("HTTPSConnection(host='about.gitlab.com', port=443): Failed to resolve 'about.gitlab.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- grafana::CISA KEV Grafana::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- grafana::Grafana Security Advisories::network::HTTPSConnectionPool(host='grafana.com', port=443): Max retries exceeded with url: /security/security-advisories/ (Caused by NameResolutionError("HTTPSConnection(host='grafana.com', port=443): Failed to resolve 'grafana.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- hapi::OSV Hapi::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- haproxy::HAProxy Blog Feed::network::HTTPSConnectionPool(host='www.haproxy.com', port=443): Max retries exceeded with url: /feed/ (Caused by NameResolutionError("HTTPSConnection(host='www.haproxy.com', port=443): Failed to resolve 'www.haproxy.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- jenkins::Jenkins Security Advisories RSS::network::HTTPSConnectionPool(host='www.jenkins.io', port=443): Max retries exceeded with url: /security/advisories/rss.xml (Caused by NameResolutionError("HTTPSConnection(host='www.jenkins.io', port=443): Failed to resolve 'www.jenkins.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- joomla::Joomla Security Centre::network::HTTPSConnectionPool(host='developer.joomla.org', port=443): Max retries exceeded with url: /security-centre.html (Caused by NameResolutionError("HTTPSConnection(host='developer.joomla.org', port=443): Failed to resolve 'developer.joomla.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- joomla::OSV Joomla::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- kibana::Elastic Security Announcements RSS::network::HTTPSConnectionPool(host='discuss.elastic.co', port=443): Max retries exceeded with url: /c/announcements/security-announcements/31.rss (Caused by NameResolutionError("HTTPSConnection(host='discuss.elastic.co', port=443): Failed to resolve 'discuss.elastic.co' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- koa::OSV Koa::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- laravel::OSV Laravel::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- magento-open-source::Magento GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /magento/magento2/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- magento-open-source::OSV Magento Open Source::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- magento-open-source::Sansec Research::network::HTTPSConnectionPool(host='sansec.io', port=443): Max retries exceeded with url: /research (Caused by NameResolutionError("HTTPSConnection(host='sansec.io', port=443): Failed to resolve 'sansec.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mattermost::Mattermost Security Updates JSON::network::HTTPSConnectionPool(host='securityupdates.mattermost.com', port=443): Max retries exceeded with url: /security_updates.json (Caused by NameResolutionError("HTTPSConnection(host='securityupdates.mattermost.com', port=443): Failed to resolve 'securityupdates.mattermost.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mattermost::OSV Mattermost::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mediawiki::MediaWiki Announce RSS::network::HTTPSConnectionPool(host='lists.wikimedia.org', port=443): Max retries exceeded with url: /hyperkitty/list/mediawiki-announce@lists.wikimedia.org/feed/ (Caused by NameResolutionError("HTTPSConnection(host='lists.wikimedia.org', port=443): Failed to resolve 'lists.wikimedia.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mediawiki::OSV MediaWiki::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- medusa::OSV Medusa::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- moodle::OSV Moodle::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nestjs::OSV NestJS::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nextjs::OSV Next.js::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nginx::CISA KEV NGINX::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nginx::NGINX Security Advisories::network::HTTPSConnectionPool(host='nginx.org', port=443): Max retries exceeded with url: /en/security_advisories.html (Caused by NameResolutionError("HTTPSConnection(host='nginx.org', port=443): Failed to resolve 'nginx.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nodejs::CISA KEV Node.js::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nodejs::Node.js Security Releases::network::HTTPSConnectionPool(host='nodejs.org', port=443): Max retries exceeded with url: /en/blog/vulnerability (Caused by NameResolutionError("HTTPSConnection(host='nodejs.org', port=443): Failed to resolve 'nodejs.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nuxt::OSV Nuxt::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- opencart::OSV OpenCart::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- opencart::OpenCart Releases::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /opencart/opencart/releases (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- openmage::OSV OpenMage::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- openmage::OpenMage GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /OpenMage/magento-lts/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- phpmyadmin::OSV phpMyAdmin::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- phpmyadmin::phpMyAdmin Security Page::network::HTTPSConnectionPool(host='www.phpmyadmin.net', port=443): Max retries exceeded with url: /security/ (Caused by NameResolutionError("HTTPSConnection(host='www.phpmyadmin.net', port=443): Failed to resolve 'www.phpmyadmin.net' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::Friends Of Presta Security::network::HTTPSConnectionPool(host='security.friendsofpresta.org', port=443): Max retries exceeded with url: / (Caused by NameResolutionError("HTTPSConnection(host='security.friendsofpresta.org', port=443): Failed to resolve 'security.friendsofpresta.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::GitHub PrestaShop Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /PrestaShop/PrestaShop/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::OSV PrestaShop::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::PrestaShop Security Page::network::HTTPSConnectionPool(host='build.prestashop-project.org', port=443): Max retries exceeded with url: /news/ (Caused by NameResolutionError("HTTPSConnection(host='build.prestashop-project.org', port=443): Failed to resolve 'build.prestashop-project.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- rails::OSV Rails::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- react::OSV React::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- redmine::OSV Redmine::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- redmine::Redmine Security Advisories::network::HTTPSConnectionPool(host='www.redmine.org', port=443): Max retries exceeded with url: /projects/redmine/wiki/Security_Advisories (Caused by NameResolutionError("HTTPSConnection(host='www.redmine.org', port=443): Failed to resolve 'www.redmine.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- saleor::GitHub Saleor Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /saleor/saleor/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- saleor::OSV Saleor::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- shopware::OSV Shopware::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- shopware::Shopware Security Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /shopware/shopware/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-boot::OSV Spring Boot::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-boot::Spring Security Advisories::network::HTTPSConnectionPool(host='spring.io', port=443): Max retries exceeded with url: /security (Caused by NameResolutionError("HTTPSConnection(host='spring.io', port=443): Failed to resolve 'spring.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-framework::OSV Spring Framework::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-framework::Spring Security Advisories::network::HTTPSConnectionPool(host='spring.io', port=443): Max retries exceeded with url: /security (Caused by NameResolutionError("HTTPSConnection(host='spring.io', port=443): Failed to resolve 'spring.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-security::OSV Spring Security::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-security::Spring Security Advisories::network::HTTPSConnectionPool(host='spring.io', port=443): Max retries exceeded with url: /security (Caused by NameResolutionError("HTTPSConnection(host='spring.io', port=443): Failed to resolve 'spring.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- strapi::OSV Strapi::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- strapi::Strapi GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /strapi/strapi/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- sveltekit::OSV SvelteKit::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- symfony::OSV Symfony::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- traefik::OSV Traefik::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- undici::OSV Undici::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- vite::OSV Vite::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- vue::OSV Vue::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- webpack::OSV webpack::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- werkzeug::OSV Werkzeug::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::GitHub WooCommerce Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /woocommerce/woocommerce/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::OSV WooCommerce::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::Patchstack Database::network::HTTPSConnectionPool(host='patchstack.com', port=443): Max retries exceeded with url: /database/ (Caused by NameResolutionError("HTTPSConnection(host='patchstack.com', port=443): Failed to resolve 'patchstack.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::Woo Developer Advisories::network::HTTPSConnectionPool(host='developer.woocommerce.com', port=443): Max retries exceeded with url: / (Caused by NameResolutionError("HTTPSConnection(host='developer.woocommerce.com', port=443): Failed to resolve 'developer.woocommerce.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::Wordfence Vulnerability Database::network::HTTPSConnectionPool(host='www.wordfence.com', port=443): Max retries exceeded with url: /threat-intel/vulnerabilities/wordpress-plugins/ (Caused by NameResolutionError("HTTPSConnection(host='www.wordfence.com', port=443): Failed to resolve 'www.wordfence.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::Patchstack Database::network::HTTPSConnectionPool(host='patchstack.com', port=443): Max retries exceeded with url: /database/ (Caused by NameResolutionError("HTTPSConnection(host='patchstack.com', port=443): Failed to resolve 'patchstack.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::PortSwigger Research::network::HTTPSConnectionPool(host='portswigger.net', port=443): Max retries exceeded with url: /research (Caused by NameResolutionError("HTTPSConnection(host='portswigger.net', port=443): Failed to resolve 'portswigger.net' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::WPScan Vulnerability Database::network::HTTPSConnectionPool(host='wpscan.com', port=443): Max retries exceeded with url: /blog/ (Caused by NameResolutionError("HTTPSConnection(host='wpscan.com', port=443): Failed to resolve 'wpscan.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::WordPress Security News RSS::network::HTTPSConnectionPool(host='wordpress.org', port=443): Max retries exceeded with url: /news/category/security/feed/ (Caused by NameResolutionError("HTTPSConnection(host='wordpress.org', port=443): Failed to resolve 'wordpress.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::Wordfence Vulnerability Database::network::HTTPSConnectionPool(host='www.wordfence.com', port=443): Max retries exceeded with url: /threat-intel/vulnerabilities/wordpress-plugins/ (Caused by NameResolutionError("HTTPSConnection(host='www.wordfence.com', port=443): Failed to resolve 'www.wordfence.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- green sources: `101`
|
||||
- open alerts: `0`
|
||||
|
||||
## 剩余风险说明
|
||||
|
||||
|
||||
文件差异内容过多而无法显示
加载差异
@@ -0,0 +1 @@
|
||||
../entities.json
|
||||
文件差异内容过多而无法显示
加载差异
文件差异内容过多而无法显示
加载差异
@@ -1,6 +1,6 @@
|
||||
# 分层实体覆盖与完整度报告
|
||||
|
||||
- 生成时间: `2026-03-20T13:41:44+00:00`
|
||||
- 生成时间: `2026-03-20T15:46:05+00:00`
|
||||
- 已编目实体: `97`
|
||||
- 待编目 backlog: `17`
|
||||
- history-full 已完成: `40`
|
||||
|
||||
文件差异内容过多而无法显示
加载差异
@@ -1,6 +1,6 @@
|
||||
# 分层实体发现 Backlog
|
||||
|
||||
- 生成时间: `2026-03-20T13:41:44+00:00`
|
||||
- 生成时间: `2026-03-20T15:46:05+00:00`
|
||||
- 待编目数量: `17`
|
||||
|
||||
| candidate_id | root_system | entity_type | risk | reason | waiting_for | source |
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"generated_at": "2026-03-20T13:41:44+00:00",
|
||||
"generated_at": "2026-03-20T15:46:05+00:00",
|
||||
"discovery_queue": {
|
||||
"count": 17,
|
||||
"items": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# 最新同步摘要
|
||||
|
||||
- 渲染时间: `2026-03-20T13:41:44+00:00`
|
||||
- 渲染时间: `2026-03-20T15:46:06+00:00`
|
||||
- 系统数量: `62`
|
||||
- Advisory 数量: `2355`
|
||||
- 已编目实体数量: `97`
|
||||
@@ -10,108 +10,4 @@
|
||||
- 新增记录: `0`
|
||||
- 更新记录: `0`
|
||||
- Triage 数量: `1175`
|
||||
- 失败的 source adapter: `101`
|
||||
|
||||
## 失败列表
|
||||
|
||||
- adminer::OSV Adminer::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- adobe-commerce::Adobe Magento Security Index::network::HTTPSConnectionPool(host='helpx.adobe.com', port=443): Max retries exceeded with url: /security/products/magento.html (Caused by NameResolutionError("HTTPSConnection(host='helpx.adobe.com', port=443): Failed to resolve 'helpx.adobe.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- angular::OSV Angular::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-httpd::Apache HTTPD Security::network::HTTPSConnectionPool(host='httpd.apache.org', port=443): Max retries exceeded with url: /security/vulnerabilities_24.html (Caused by NameResolutionError("HTTPSConnection(host='httpd.apache.org', port=443): Failed to resolve 'httpd.apache.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-httpd::CISA KEV Apache HTTPD::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-tomcat::Apache Tomcat Security::network::HTTPSConnectionPool(host='tomcat.apache.org', port=443): Max retries exceeded with url: /security-10.html (Caused by NameResolutionError("HTTPSConnection(host='tomcat.apache.org', port=443): Failed to resolve 'tomcat.apache.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- apache-tomcat::CISA KEV Tomcat::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- aspnet-core::OSV ASP.NET Core::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- astro::OSV Astro::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- caddy::OSV Caddy::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- directus::Directus GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /directus/directus/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- directus::OSV Directus::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- discourse::Discourse Release Notes RSS::network::HTTPSConnectionPool(host='meta.discourse.org', port=443): Max retries exceeded with url: /tag/release-notes.rss (Caused by NameResolutionError("HTTPSConnection(host='meta.discourse.org', port=443): Failed to resolve 'meta.discourse.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- discourse::Discourse Security RSS::network::HTTPSConnectionPool(host='meta.discourse.org', port=443): Max retries exceeded with url: /tag/security.rss (Caused by NameResolutionError("HTTPSConnection(host='meta.discourse.org', port=443): Failed to resolve 'meta.discourse.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- discourse::OSV Discourse::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- django::Django Security Releases Archive::network::HTTPSConnectionPool(host='docs.djangoproject.com', port=443): Max retries exceeded with url: /en/dev/releases/security/ (Caused by NameResolutionError("HTTPSConnection(host='docs.djangoproject.com', port=443): Failed to resolve 'docs.djangoproject.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- django::Django Security Weblog::network::HTTPSConnectionPool(host='www.djangoproject.com', port=443): Max retries exceeded with url: /weblog/ (Caused by NameResolutionError("HTTPSConnection(host='www.djangoproject.com', port=443): Failed to resolve 'www.djangoproject.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- django::OSV Django::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- drupal::Drupal Security Advisories RSS::network::HTTPSConnectionPool(host='www.drupal.org', port=443): Max retries exceeded with url: /security/rss.xml (Caused by NameResolutionError("HTTPSConnection(host='www.drupal.org', port=443): Failed to resolve 'www.drupal.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- drupal::OSV Drupal::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- echo::OSV Echo::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- esbuild::OSV esbuild::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- express::OSV Express::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- fastify::OSV Fastify::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- flask::OSV Flask::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- ghost::Ghost GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /TryGhost/Ghost/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- ghost::OSV Ghost::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gin::OSV Gin::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gitea::OSV Gitea::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gitlab-ce::GitLab Advisory Database::network::HTTPSConnectionPool(host='gitlab.com', port=443): Max retries exceeded with url: /gitlab-org/advisories-community (Caused by NameResolutionError("HTTPSConnection(host='gitlab.com', port=443): Failed to resolve 'gitlab.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- gitlab-ce::GitLab Security Releases Atom::network::HTTPSConnectionPool(host='about.gitlab.com', port=443): Max retries exceeded with url: /security-releases.xml (Caused by NameResolutionError("HTTPSConnection(host='about.gitlab.com', port=443): Failed to resolve 'about.gitlab.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- grafana::CISA KEV Grafana::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- grafana::Grafana Security Advisories::network::HTTPSConnectionPool(host='grafana.com', port=443): Max retries exceeded with url: /security/security-advisories/ (Caused by NameResolutionError("HTTPSConnection(host='grafana.com', port=443): Failed to resolve 'grafana.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- hapi::OSV Hapi::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- haproxy::HAProxy Blog Feed::network::HTTPSConnectionPool(host='www.haproxy.com', port=443): Max retries exceeded with url: /feed/ (Caused by NameResolutionError("HTTPSConnection(host='www.haproxy.com', port=443): Failed to resolve 'www.haproxy.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- jenkins::Jenkins Security Advisories RSS::network::HTTPSConnectionPool(host='www.jenkins.io', port=443): Max retries exceeded with url: /security/advisories/rss.xml (Caused by NameResolutionError("HTTPSConnection(host='www.jenkins.io', port=443): Failed to resolve 'www.jenkins.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- joomla::Joomla Security Centre::network::HTTPSConnectionPool(host='developer.joomla.org', port=443): Max retries exceeded with url: /security-centre.html (Caused by NameResolutionError("HTTPSConnection(host='developer.joomla.org', port=443): Failed to resolve 'developer.joomla.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- joomla::OSV Joomla::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- kibana::Elastic Security Announcements RSS::network::HTTPSConnectionPool(host='discuss.elastic.co', port=443): Max retries exceeded with url: /c/announcements/security-announcements/31.rss (Caused by NameResolutionError("HTTPSConnection(host='discuss.elastic.co', port=443): Failed to resolve 'discuss.elastic.co' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- koa::OSV Koa::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- laravel::OSV Laravel::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- magento-open-source::Magento GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /magento/magento2/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- magento-open-source::OSV Magento Open Source::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- magento-open-source::Sansec Research::network::HTTPSConnectionPool(host='sansec.io', port=443): Max retries exceeded with url: /research (Caused by NameResolutionError("HTTPSConnection(host='sansec.io', port=443): Failed to resolve 'sansec.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mattermost::Mattermost Security Updates JSON::network::HTTPSConnectionPool(host='securityupdates.mattermost.com', port=443): Max retries exceeded with url: /security_updates.json (Caused by NameResolutionError("HTTPSConnection(host='securityupdates.mattermost.com', port=443): Failed to resolve 'securityupdates.mattermost.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mattermost::OSV Mattermost::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mediawiki::MediaWiki Announce RSS::network::HTTPSConnectionPool(host='lists.wikimedia.org', port=443): Max retries exceeded with url: /hyperkitty/list/mediawiki-announce@lists.wikimedia.org/feed/ (Caused by NameResolutionError("HTTPSConnection(host='lists.wikimedia.org', port=443): Failed to resolve 'lists.wikimedia.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- mediawiki::OSV MediaWiki::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- medusa::OSV Medusa::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- moodle::OSV Moodle::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nestjs::OSV NestJS::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nextjs::OSV Next.js::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nginx::CISA KEV NGINX::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nginx::NGINX Security Advisories::network::HTTPSConnectionPool(host='nginx.org', port=443): Max retries exceeded with url: /en/security_advisories.html (Caused by NameResolutionError("HTTPSConnection(host='nginx.org', port=443): Failed to resolve 'nginx.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nodejs::CISA KEV Node.js::network::HTTPSConnectionPool(host='www.cisa.gov', port=443): Max retries exceeded with url: /sites/default/files/feeds/known_exploited_vulnerabilities.json (Caused by NameResolutionError("HTTPSConnection(host='www.cisa.gov', port=443): Failed to resolve 'www.cisa.gov' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nodejs::Node.js Security Releases::network::HTTPSConnectionPool(host='nodejs.org', port=443): Max retries exceeded with url: /en/blog/vulnerability (Caused by NameResolutionError("HTTPSConnection(host='nodejs.org', port=443): Failed to resolve 'nodejs.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- nuxt::OSV Nuxt::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- opencart::OSV OpenCart::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- opencart::OpenCart Releases::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /opencart/opencart/releases (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- openmage::OSV OpenMage::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- openmage::OpenMage GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /OpenMage/magento-lts/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- phpmyadmin::OSV phpMyAdmin::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- phpmyadmin::phpMyAdmin Security Page::network::HTTPSConnectionPool(host='www.phpmyadmin.net', port=443): Max retries exceeded with url: /security/ (Caused by NameResolutionError("HTTPSConnection(host='www.phpmyadmin.net', port=443): Failed to resolve 'www.phpmyadmin.net' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::Friends Of Presta Security::network::HTTPSConnectionPool(host='security.friendsofpresta.org', port=443): Max retries exceeded with url: / (Caused by NameResolutionError("HTTPSConnection(host='security.friendsofpresta.org', port=443): Failed to resolve 'security.friendsofpresta.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::GitHub PrestaShop Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /PrestaShop/PrestaShop/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::OSV PrestaShop::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- prestashop::PrestaShop Security Page::network::HTTPSConnectionPool(host='build.prestashop-project.org', port=443): Max retries exceeded with url: /news/ (Caused by NameResolutionError("HTTPSConnection(host='build.prestashop-project.org', port=443): Failed to resolve 'build.prestashop-project.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- rails::OSV Rails::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- react::OSV React::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- redmine::OSV Redmine::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- redmine::Redmine Security Advisories::network::HTTPSConnectionPool(host='www.redmine.org', port=443): Max retries exceeded with url: /projects/redmine/wiki/Security_Advisories (Caused by NameResolutionError("HTTPSConnection(host='www.redmine.org', port=443): Failed to resolve 'www.redmine.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- saleor::GitHub Saleor Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /saleor/saleor/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- saleor::OSV Saleor::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- shopware::OSV Shopware::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- shopware::Shopware Security Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /shopware/shopware/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-boot::OSV Spring Boot::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-boot::Spring Security Advisories::network::HTTPSConnectionPool(host='spring.io', port=443): Max retries exceeded with url: /security (Caused by NameResolutionError("HTTPSConnection(host='spring.io', port=443): Failed to resolve 'spring.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-framework::OSV Spring Framework::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-framework::Spring Security Advisories::network::HTTPSConnectionPool(host='spring.io', port=443): Max retries exceeded with url: /security (Caused by NameResolutionError("HTTPSConnection(host='spring.io', port=443): Failed to resolve 'spring.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-security::OSV Spring Security::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- spring-security::Spring Security Advisories::network::HTTPSConnectionPool(host='spring.io', port=443): Max retries exceeded with url: /security (Caused by NameResolutionError("HTTPSConnection(host='spring.io', port=443): Failed to resolve 'spring.io' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- strapi::OSV Strapi::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- strapi::Strapi GitHub Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /strapi/strapi/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- sveltekit::OSV SvelteKit::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- symfony::OSV Symfony::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- traefik::OSV Traefik::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- undici::OSV Undici::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- vite::OSV Vite::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- vue::OSV Vue::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- webpack::OSV webpack::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- werkzeug::OSV Werkzeug::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::GitHub WooCommerce Advisories::network::HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /woocommerce/woocommerce/security/advisories (Caused by NameResolutionError("HTTPSConnection(host='github.com', port=443): Failed to resolve 'github.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::OSV WooCommerce::network::HTTPSConnectionPool(host='api.osv.dev', port=443): Max retries exceeded with url: /v1/querybatch (Caused by NameResolutionError("HTTPSConnection(host='api.osv.dev', port=443): Failed to resolve 'api.osv.dev' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::Patchstack Database::network::HTTPSConnectionPool(host='patchstack.com', port=443): Max retries exceeded with url: /database/ (Caused by NameResolutionError("HTTPSConnection(host='patchstack.com', port=443): Failed to resolve 'patchstack.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::Woo Developer Advisories::network::HTTPSConnectionPool(host='developer.woocommerce.com', port=443): Max retries exceeded with url: / (Caused by NameResolutionError("HTTPSConnection(host='developer.woocommerce.com', port=443): Failed to resolve 'developer.woocommerce.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- woocommerce::Wordfence Vulnerability Database::network::HTTPSConnectionPool(host='www.wordfence.com', port=443): Max retries exceeded with url: /threat-intel/vulnerabilities/wordpress-plugins/ (Caused by NameResolutionError("HTTPSConnection(host='www.wordfence.com', port=443): Failed to resolve 'www.wordfence.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::Patchstack Database::network::HTTPSConnectionPool(host='patchstack.com', port=443): Max retries exceeded with url: /database/ (Caused by NameResolutionError("HTTPSConnection(host='patchstack.com', port=443): Failed to resolve 'patchstack.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::PortSwigger Research::network::HTTPSConnectionPool(host='portswigger.net', port=443): Max retries exceeded with url: /research (Caused by NameResolutionError("HTTPSConnection(host='portswigger.net', port=443): Failed to resolve 'portswigger.net' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::WPScan Vulnerability Database::network::HTTPSConnectionPool(host='wpscan.com', port=443): Max retries exceeded with url: /blog/ (Caused by NameResolutionError("HTTPSConnection(host='wpscan.com', port=443): Failed to resolve 'wpscan.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::WordPress Security News RSS::network::HTTPSConnectionPool(host='wordpress.org', port=443): Max retries exceeded with url: /news/category/security/feed/ (Caused by NameResolutionError("HTTPSConnection(host='wordpress.org', port=443): Failed to resolve 'wordpress.org' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- wordpress::Wordfence Vulnerability Database::network::HTTPSConnectionPool(host='www.wordfence.com', port=443): Max retries exceeded with url: /threat-intel/vulnerabilities/wordpress-plugins/ (Caused by NameResolutionError("HTTPSConnection(host='www.wordfence.com', port=443): Failed to resolve 'www.wordfence.com' ([Errno 8] nodename nor servname provided, or not known)"))
|
||||
- 失败的 source adapter: `0`
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"generated_at": "2026-03-20T13:41:26+00:00",
|
||||
"generated_at": "2026-03-20T15:45:58+00:00",
|
||||
"active_source_count": 101,
|
||||
"green_source_count": 0,
|
||||
"source_failure_count": 101,
|
||||
"open_alert_count": 101,
|
||||
"resolved_alert_count": 0,
|
||||
"last_fully_green_run": "2026-03-20T00:56:25+00:00",
|
||||
"green_source_count": 101,
|
||||
"source_failure_count": 0,
|
||||
"open_alert_count": 0,
|
||||
"resolved_alert_count": 101,
|
||||
"last_fully_green_run": "2026-03-20T15:45:58+00:00",
|
||||
"source_catalog": {
|
||||
"system_count": 62,
|
||||
"source_count": 179,
|
||||
@@ -14,7 +14,7 @@
|
||||
"ingest": {
|
||||
"new_count": 0,
|
||||
"updated_count": 0,
|
||||
"failure_count": 101,
|
||||
"failure_count": 0,
|
||||
"systems_touched": []
|
||||
},
|
||||
"validation": {
|
||||
|
||||
文件差异内容过多而无法显示
加载差异
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"generated_at": "2026-03-20T09:24:12+00:00",
|
||||
"generated_at": "2026-03-20T15:45:44+00:00",
|
||||
"system_count": 62,
|
||||
"source_count": 179,
|
||||
"active_source_count": 101,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Source Catalog Audit
|
||||
|
||||
- generated_at: `2026-03-20T09:24:12+00:00`
|
||||
- generated_at: `2026-03-20T15:45:44+00:00`
|
||||
- systems: `62`
|
||||
- sources: `179`
|
||||
- active_sources: `101`
|
||||
|
||||
文件差异内容过多而无法显示
加载差异
文件差异内容过多而无法显示
加载差异
@@ -16,6 +16,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 2,
|
||||
"entity_summary": {
|
||||
"system_id": "adminer",
|
||||
"display_name": "Adminer",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"adminer--CVE-2026-25892",
|
||||
"adminer--CVE-2026-25878"
|
||||
|
||||
@@ -18,6 +18,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 81,
|
||||
"entity_summary": {
|
||||
"system_id": "adobe-commerce",
|
||||
"display_name": "Adobe Commerce",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"adobe-commerce--CVE-2024-20759",
|
||||
"adobe-commerce--CVE-2024-20758",
|
||||
|
||||
@@ -17,6 +17,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 2,
|
||||
"entity_summary": {
|
||||
"system_id": "angular",
|
||||
"display_name": "Angular",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"package": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "angular--package--angular-core",
|
||||
"entity_type": "package",
|
||||
"display_name": "angular / core",
|
||||
"advisory_count": 2,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"angular--CVE-2026-32635",
|
||||
"angular--CVE-2026-27970"
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 135,
|
||||
"entity_summary": {
|
||||
"system_id": "apache-httpd",
|
||||
"display_name": "Apache HTTP Server",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"apache-httpd--CVE-2024-38475",
|
||||
"apache-httpd--CVE-2021-40438",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 136,
|
||||
"entity_summary": {
|
||||
"system_id": "apache-tomcat",
|
||||
"display_name": "Apache Tomcat",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"apache-tomcat--CVE-2025-24813",
|
||||
"apache-tomcat--CVE-2016-8735",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 3,
|
||||
"entity_summary": {
|
||||
"system_id": "aspnet-core",
|
||||
"display_name": "ASP.NET Core",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"aspnet-core--CVE-2026-26130",
|
||||
"aspnet-core--CVE-2020-1045",
|
||||
|
||||
@@ -16,6 +16,45 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 14,
|
||||
"entity_summary": {
|
||||
"system_id": "astro",
|
||||
"display_name": "Astro",
|
||||
"cataloged_entity_total": 3,
|
||||
"child_entity_total": 2,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 3,
|
||||
"version_mapped_count": 3,
|
||||
"official_source_covered_count": 3,
|
||||
"history_full_complete_count": 3,
|
||||
"latest_green_count": 3,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 1,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"module": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "astro--project--astro",
|
||||
"entity_type": "project",
|
||||
"display_name": "astro",
|
||||
"advisory_count": 12,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "astro--module--astro",
|
||||
"entity_type": "module",
|
||||
"display_name": "astro",
|
||||
"advisory_count": 2,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"astro--CVE-2025-66202",
|
||||
"astro--CVE-2025-65019",
|
||||
|
||||
@@ -16,6 +16,45 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 27,
|
||||
"entity_summary": {
|
||||
"system_id": "caddy",
|
||||
"display_name": "Caddy",
|
||||
"cataloged_entity_total": 3,
|
||||
"child_entity_total": 2,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 3,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 3,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 3,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 1,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"repo": 1,
|
||||
"extension": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "caddy--repo--github-com-caddyserver-caddy-v2",
|
||||
"entity_type": "repo",
|
||||
"display_name": "caddyserver / caddy / v2",
|
||||
"advisory_count": 5,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "caddy--extension--github-com-caddyserver-caddy-v2",
|
||||
"entity_type": "extension",
|
||||
"display_name": "caddyserver / caddy / v2",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"caddy--CVE-2026-27590",
|
||||
"caddy--CVE-2026-27589",
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 29,
|
||||
"entity_summary": {
|
||||
"system_id": "directus",
|
||||
"display_name": "Directus",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "directus--repo-candidate--https-github-com-directus-directus",
|
||||
"display_name": "directus / directus",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"directus--05a97ef95a",
|
||||
"directus--0f0b39c9f0",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 30,
|
||||
"entity_summary": {
|
||||
"system_id": "discourse",
|
||||
"display_name": "Discourse",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"discourse--68e2bb93e1",
|
||||
"discourse--615bee56ae",
|
||||
|
||||
@@ -17,6 +17,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 82,
|
||||
"entity_summary": {
|
||||
"system_id": "django",
|
||||
"display_name": "Django",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 1,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "django--project--django",
|
||||
"entity_type": "project",
|
||||
"display_name": "django",
|
||||
"advisory_count": 5,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"django--CVE-2026-25673",
|
||||
"django--CVE-2026-25674",
|
||||
|
||||
@@ -18,6 +18,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 70,
|
||||
"entity_summary": {
|
||||
"system_id": "drupal",
|
||||
"display_name": "Drupal",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"drupal--e8587ffc80",
|
||||
"drupal--6da7fc8e2e",
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 2,
|
||||
"entity_summary": {
|
||||
"system_id": "echo",
|
||||
"display_name": "Echo",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"repo": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "echo--repo--github-com-labstack-echo-v4",
|
||||
"entity_type": "repo",
|
||||
"display_name": "labstack / echo / v4",
|
||||
"advisory_count": 2,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"echo--CVE-2022-40083",
|
||||
"echo--CVE-2020-36565"
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "esbuild",
|
||||
"display_name": "esbuild",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "esbuild--project--esbuild",
|
||||
"entity_type": "project",
|
||||
"display_name": "esbuild",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"esbuild--GHSA-67mh-4wv8-2f99"
|
||||
]
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "express",
|
||||
"display_name": "Express",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"express--CVE-2025-67731"
|
||||
]
|
||||
|
||||
@@ -17,6 +17,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "fastify",
|
||||
"display_name": "Fastify",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "fastify--project--fastify",
|
||||
"entity_type": "project",
|
||||
"display_name": "fastify",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"fastify--CVE-2026-3419"
|
||||
]
|
||||
|
||||
@@ -17,6 +17,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "flask",
|
||||
"display_name": "Flask",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "flask--project--flask",
|
||||
"entity_type": "project",
|
||||
"display_name": "flask",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"flask--CVE-2026-27205"
|
||||
]
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 23,
|
||||
"entity_summary": {
|
||||
"system_id": "ghost",
|
||||
"display_name": "Ghost",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "ghost--repo-candidate--https-github-com-tryghost-ghost",
|
||||
"display_name": "TryGhost / Ghost",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"ghost--050f486105",
|
||||
"ghost--090e8094eb",
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "gin",
|
||||
"display_name": "Gin",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"repo": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "gin--repo--github-com-gin-gonic-gin",
|
||||
"entity_type": "repo",
|
||||
"display_name": "gin-gonic / gin",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"gin--CVE-2020-28483"
|
||||
]
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 13,
|
||||
"entity_summary": {
|
||||
"system_id": "gitea",
|
||||
"display_name": "Gitea",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "gitea--repo-candidate--https-github-com-go-gitea-gitea",
|
||||
"display_name": "go-gitea / gitea",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"gitea--1c8e9c362e",
|
||||
"gitea--208153c00f",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 55,
|
||||
"entity_summary": {
|
||||
"system_id": "gitlab-ce",
|
||||
"display_name": "GitLab CE",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"gitlab-ce--0304f4760b",
|
||||
"gitlab-ce--09c34791d2",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 60,
|
||||
"entity_summary": {
|
||||
"system_id": "grafana",
|
||||
"display_name": "Grafana",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"grafana--00af5c25c8",
|
||||
"grafana--05333b1b24",
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "hapi",
|
||||
"display_name": "Hapi",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"package": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "hapi--package--hapi-hapi",
|
||||
"entity_type": "package",
|
||||
"display_name": "hapi / hapi",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"hapi--GHSA-23vw-mhv5-grv5"
|
||||
]
|
||||
|
||||
@@ -16,6 +16,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 6,
|
||||
"entity_summary": {
|
||||
"system_id": "haproxy",
|
||||
"display_name": "HAProxy",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"haproxy--f1c3251635",
|
||||
"haproxy--3164dd5e31",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 60,
|
||||
"entity_summary": {
|
||||
"system_id": "jenkins",
|
||||
"display_name": "Jenkins",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"jenkins--03dd61ed6c",
|
||||
"jenkins--06fb3ff46d",
|
||||
|
||||
@@ -18,6 +18,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 100,
|
||||
"entity_summary": {
|
||||
"system_id": "joomla",
|
||||
"display_name": "Joomla",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"joomla--CVE-2006-4553",
|
||||
"joomla--CVE-2006-4556",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 47,
|
||||
"entity_summary": {
|
||||
"system_id": "kibana",
|
||||
"display_name": "Kibana",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"kibana--844efe5dac",
|
||||
"kibana--ca14c406d9",
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "koa",
|
||||
"display_name": "Koa",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "koa--project--koa",
|
||||
"entity_type": "project",
|
||||
"display_name": "koa",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"koa--CVE-2026-27959"
|
||||
]
|
||||
|
||||
@@ -17,6 +17,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 2,
|
||||
"entity_summary": {
|
||||
"system_id": "laravel",
|
||||
"display_name": "Laravel",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"package": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "laravel--package--laravel-framework",
|
||||
"entity_type": "package",
|
||||
"display_name": "laravel / framework",
|
||||
"advisory_count": 2,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"laravel--CVE-2021-43808",
|
||||
"laravel--CVE-2021-21263"
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 89,
|
||||
"entity_summary": {
|
||||
"system_id": "magento-open-source",
|
||||
"display_name": "Magento Open Source",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "magento-open-source--repo-candidate--https-github-com-magento-magento2",
|
||||
"display_name": "magento / magento2",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"magento-open-source--CVE-2019-7885",
|
||||
"magento-open-source--CVE-2019-7882",
|
||||
|
||||
@@ -17,6 +17,62 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 21,
|
||||
"entity_summary": {
|
||||
"system_id": "mattermost",
|
||||
"display_name": "Mattermost",
|
||||
"cataloged_entity_total": 5,
|
||||
"child_entity_total": 4,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 5,
|
||||
"version_mapped_count": 5,
|
||||
"official_source_covered_count": 5,
|
||||
"history_full_complete_count": 3,
|
||||
"latest_green_count": 5,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 1,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"repo": 1,
|
||||
"project": 2,
|
||||
"plugin": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "mattermost--project--mattermost-server",
|
||||
"entity_type": "project",
|
||||
"display_name": "Mattermost Server",
|
||||
"advisory_count": 14,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "mattermost--plugin--mattermost-plugins",
|
||||
"entity_type": "plugin",
|
||||
"display_name": "Mattermost Plugins",
|
||||
"advisory_count": 5,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "mattermost--project--issue-platform",
|
||||
"entity_type": "project",
|
||||
"display_name": "Issue Platform",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "mattermost--repo--github-com-mattermost-mattermost-server",
|
||||
"entity_type": "repo",
|
||||
"display_name": "mattermost / mattermost-server",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"mattermost--Issue Identifier",
|
||||
"mattermost--CVE-2026-22545",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 70,
|
||||
"entity_summary": {
|
||||
"system_id": "mediawiki",
|
||||
"display_name": "MediaWiki",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"mediawiki--9531fc3afb",
|
||||
"mediawiki--0cd3c8cc6d",
|
||||
|
||||
@@ -16,6 +16,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 15,
|
||||
"entity_summary": {
|
||||
"system_id": "medusa",
|
||||
"display_name": "Medusa",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "medusa--repo-candidate--https-github-com-medusajs-medusa",
|
||||
"display_name": "medusajs / medusa",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"medusa--16e8e57a44",
|
||||
"medusa--25e199859a",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 40,
|
||||
"entity_summary": {
|
||||
"system_id": "moodle",
|
||||
"display_name": "Moodle",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"moodle--CVE-2008-3325",
|
||||
"moodle--CVE-2008-1502",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 2,
|
||||
"entity_summary": {
|
||||
"system_id": "nestjs",
|
||||
"display_name": "NestJS",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"nestjs--CVE-2026-2293",
|
||||
"nestjs--CVE-2025-69211"
|
||||
|
||||
@@ -17,6 +17,43 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 40,
|
||||
"entity_summary": {
|
||||
"system_id": "nextjs",
|
||||
"display_name": "Next.js",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 1,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "nextjs--project--next",
|
||||
"entity_type": "project",
|
||||
"display_name": "next",
|
||||
"advisory_count": 41,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "nextjs--repo-candidate--https-github-com-vercel-next-js",
|
||||
"display_name": "vercel / next.js",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"nextjs--CVE-2026-29057",
|
||||
"nextjs--CVE-2026-27980",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 110,
|
||||
"entity_summary": {
|
||||
"system_id": "nginx",
|
||||
"display_name": "Nginx",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"nginx--CVE-2019-18371",
|
||||
"nginx--CVE-2019-15517",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 8,
|
||||
"entity_summary": {
|
||||
"system_id": "nodejs",
|
||||
"display_name": "Node.js",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"nodejs--CVE-2024-55591",
|
||||
"nodejs--CVE-2021-21315",
|
||||
|
||||
@@ -17,6 +17,43 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 28,
|
||||
"entity_summary": {
|
||||
"system_id": "nuxt",
|
||||
"display_name": "Nuxt",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 1,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "nuxt--project--nuxt",
|
||||
"entity_type": "project",
|
||||
"display_name": "nuxt",
|
||||
"advisory_count": 5,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "nuxt--repo-candidate--https-github-com-nuxt-nuxt",
|
||||
"display_name": "nuxt / nuxt",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"nuxt--CVE-2025-59414",
|
||||
"nuxt--CVE-2025-27415",
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 100,
|
||||
"entity_summary": {
|
||||
"system_id": "opencart",
|
||||
"display_name": "OpenCart",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "opencart--repo-candidate--https-github-com-opencart-opencart",
|
||||
"display_name": "opencart / opencart",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"opencart--CVE-2025-1749",
|
||||
"opencart--CVE-2025-1748",
|
||||
|
||||
@@ -16,6 +16,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 27,
|
||||
"entity_summary": {
|
||||
"system_id": "openmage",
|
||||
"display_name": "OpenMage / Mage-OS",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "openmage--repo-candidate--https-github-com-openmage-magento-lts",
|
||||
"display_name": "OpenMage / magento-lts",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"openmage--00ec9cbd94",
|
||||
"openmage--05dce0ecb4",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 50,
|
||||
"entity_summary": {
|
||||
"system_id": "phpmyadmin",
|
||||
"display_name": "phpMyAdmin",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"phpmyadmin--04b4918ca9",
|
||||
"phpmyadmin--061948dba4",
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 112,
|
||||
"entity_summary": {
|
||||
"system_id": "prestashop",
|
||||
"display_name": "PrestaShop",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "prestashop--repo-candidate--https-github-com-prestashop-prestashop",
|
||||
"display_name": "PrestaShop / PrestaShop",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"prestashop--CVE-2020-5294",
|
||||
"prestashop--CVE-2020-5273",
|
||||
|
||||
@@ -17,6 +17,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 42,
|
||||
"entity_summary": {
|
||||
"system_id": "rails",
|
||||
"display_name": "Ruby on Rails",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 1,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "rails--project--rails",
|
||||
"entity_type": "project",
|
||||
"display_name": "rails",
|
||||
"advisory_count": 10,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"rails--CVE-2024-26143",
|
||||
"rails--CVE-2006-4111",
|
||||
|
||||
@@ -17,6 +17,51 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 21,
|
||||
"entity_summary": {
|
||||
"system_id": "react",
|
||||
"display_name": "React",
|
||||
"cataloged_entity_total": 3,
|
||||
"child_entity_total": 2,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 3,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 3,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 3,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 2
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "react--project--react",
|
||||
"entity_type": "project",
|
||||
"display_name": "react",
|
||||
"advisory_count": 2,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "react--project--react-dom",
|
||||
"entity_type": "project",
|
||||
"display_name": "react-dom",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "react--repo-candidate--https-github-com-facebook-react",
|
||||
"display_name": "facebook / react",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"react--CVE-2013-7035",
|
||||
"react--GHSA-hg79-j56m-fxgv",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 50,
|
||||
"entity_summary": {
|
||||
"system_id": "redmine",
|
||||
"display_name": "Redmine",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"redmine--0282099421",
|
||||
"redmine--06dcc3d798",
|
||||
|
||||
@@ -16,6 +16,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 24,
|
||||
"entity_summary": {
|
||||
"system_id": "saleor",
|
||||
"display_name": "Saleor",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "saleor--repo-candidate--https-github-com-saleor-saleor",
|
||||
"display_name": "saleor / saleor",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"saleor--06ef9177f9",
|
||||
"saleor--0b7b2f4f3f",
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 71,
|
||||
"entity_summary": {
|
||||
"system_id": "shopware",
|
||||
"display_name": "Shopware",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "shopware--repo-candidate--https-github-com-shopware-shopware",
|
||||
"display_name": "shopware / shopware",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"shopware--CVE-2023-22730",
|
||||
"shopware--CVE-2022-36102",
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 2,
|
||||
"entity_summary": {
|
||||
"system_id": "spring-boot",
|
||||
"display_name": "Spring Boot",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 1,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "spring-boot--project--org-springframework-boot-spring-boot",
|
||||
"entity_type": "project",
|
||||
"display_name": "org.springframework.boot:spring-boot",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"spring-boot--CVE-2022-27772",
|
||||
"spring-boot--0f2728a088"
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 11,
|
||||
"entity_summary": {
|
||||
"system_id": "spring-framework",
|
||||
"display_name": "Spring Framework",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"spring-framework--138983e8a8",
|
||||
"spring-framework--1cce2f0e27",
|
||||
|
||||
@@ -17,6 +17,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 3,
|
||||
"entity_summary": {
|
||||
"system_id": "spring-security",
|
||||
"display_name": "Spring Security",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"spring-security--3da31f4883",
|
||||
"spring-security--7817f6fd2f",
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 26,
|
||||
"entity_summary": {
|
||||
"system_id": "strapi",
|
||||
"display_name": "Strapi",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "strapi--repo-candidate--https-github-com-strapi-strapi",
|
||||
"display_name": "strapi / strapi",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"strapi--05ba9bef79",
|
||||
"strapi--1473dee955",
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 3,
|
||||
"entity_summary": {
|
||||
"system_id": "sveltekit",
|
||||
"display_name": "SvelteKit",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"package": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "sveltekit--package--sveltejs-kit",
|
||||
"entity_type": "package",
|
||||
"display_name": "sveltejs / kit",
|
||||
"advisory_count": 3,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"sveltekit--GHSA-fpg4-jhqr-589c",
|
||||
"sveltekit--GHSA-88qp-p4qg-rqm6",
|
||||
|
||||
@@ -17,6 +17,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 9,
|
||||
"entity_summary": {
|
||||
"system_id": "symfony",
|
||||
"display_name": "Symfony",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 2,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"package": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "symfony--package--symfony-symfony",
|
||||
"entity_type": "package",
|
||||
"display_name": "symfony / symfony",
|
||||
"advisory_count": 9,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"symfony--CVE-2021-41270",
|
||||
"symfony--CVE-2021-41268",
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 43,
|
||||
"entity_summary": {
|
||||
"system_id": "traefik",
|
||||
"display_name": "Traefik",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 1,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"repo": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "traefik--repo--github-com-traefik-traefik-v3",
|
||||
"entity_type": "repo",
|
||||
"display_name": "traefik / traefik / v3",
|
||||
"advisory_count": 16,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"traefik--GHSA-4hjq-9h5c-252j",
|
||||
"traefik--CVE-2026-29777",
|
||||
|
||||
@@ -16,6 +16,45 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 9,
|
||||
"entity_summary": {
|
||||
"system_id": "undici",
|
||||
"display_name": "Undici",
|
||||
"cataloged_entity_total": 3,
|
||||
"child_entity_total": 2,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 3,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 3,
|
||||
"history_full_complete_count": 3,
|
||||
"latest_green_count": 3,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 1,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1,
|
||||
"extension": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "undici--project--undici",
|
||||
"entity_type": "project",
|
||||
"display_name": "undici",
|
||||
"advisory_count": 13,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "undici--extension--undici",
|
||||
"entity_type": "extension",
|
||||
"display_name": "undici",
|
||||
"advisory_count": 2,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"undici--CVE-2026-1526",
|
||||
"undici--CVE-2026-2229",
|
||||
|
||||
@@ -17,6 +17,70 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 30,
|
||||
"entity_summary": {
|
||||
"system_id": "vite",
|
||||
"display_name": "Vite",
|
||||
"cataloged_entity_total": 5,
|
||||
"child_entity_total": 4,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 5,
|
||||
"version_mapped_count": 4,
|
||||
"official_source_covered_count": 5,
|
||||
"history_full_complete_count": 3,
|
||||
"latest_green_count": 5,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 3,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1,
|
||||
"plugin": 1,
|
||||
"module": 1,
|
||||
"extension": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "vite--project--vite",
|
||||
"entity_type": "project",
|
||||
"display_name": "vite",
|
||||
"advisory_count": 11,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "vite--plugin--vite",
|
||||
"entity_type": "plugin",
|
||||
"display_name": "vite",
|
||||
"advisory_count": 3,
|
||||
"history_backfill_status": "complete",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "vite--extension--vite",
|
||||
"entity_type": "extension",
|
||||
"display_name": "vite",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
},
|
||||
{
|
||||
"entity_id": "vite--module--vite",
|
||||
"entity_type": "module",
|
||||
"display_name": "vite",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "vite--repo-candidate--https-github-com-vitejs-vite",
|
||||
"display_name": "vitejs / vite",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"vite--CVE-2025-62522",
|
||||
"vite--CVE-2025-58751",
|
||||
|
||||
@@ -17,6 +17,43 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 15,
|
||||
"entity_summary": {
|
||||
"system_id": "vue",
|
||||
"display_name": "Vue",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 1,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "vue--project--vue",
|
||||
"entity_type": "project",
|
||||
"display_name": "vue",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "vue--repo-candidate--https-github-com-vuejs-core",
|
||||
"display_name": "vuejs / core",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"vue--CVE-2024-9506",
|
||||
"vue--1570e8326d",
|
||||
|
||||
@@ -16,6 +16,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "webpack",
|
||||
"display_name": "webpack",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"webpack--CVE-2026-27903"
|
||||
]
|
||||
|
||||
@@ -16,6 +16,36 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 1,
|
||||
"entity_summary": {
|
||||
"system_id": "werkzeug",
|
||||
"display_name": "Werkzeug",
|
||||
"cataloged_entity_total": 2,
|
||||
"child_entity_total": 1,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 2,
|
||||
"version_mapped_count": 2,
|
||||
"official_source_covered_count": 2,
|
||||
"history_full_complete_count": 0,
|
||||
"latest_green_count": 2,
|
||||
"version_gap_entity_count": 0,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1,
|
||||
"project": 1
|
||||
},
|
||||
"top_entities": [
|
||||
{
|
||||
"entity_id": "werkzeug--project--werkzeug",
|
||||
"entity_type": "project",
|
||||
"display_name": "werkzeug",
|
||||
"advisory_count": 1,
|
||||
"history_backfill_status": "seeded",
|
||||
"latest_sync_status": "green"
|
||||
}
|
||||
],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"werkzeug--CVE-2026-27199"
|
||||
]
|
||||
|
||||
@@ -17,6 +17,33 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 111,
|
||||
"entity_summary": {
|
||||
"system_id": "woocommerce",
|
||||
"display_name": "WooCommerce",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 1,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": [
|
||||
{
|
||||
"candidate_id": "woocommerce--repo-candidate--https-github-com-woocommerce-woocommerce",
|
||||
"display_name": "woocommerce / woocommerce",
|
||||
"entity_type": "repo",
|
||||
"risk": "medium"
|
||||
}
|
||||
]
|
||||
},
|
||||
"items": [
|
||||
"woocommerce--CVE-2019-18834",
|
||||
"woocommerce--CVE-2019-20891",
|
||||
|
||||
@@ -18,6 +18,26 @@
|
||||
"verified_synthetic": 0,
|
||||
"blocked_count": 0,
|
||||
"manual_count": 140,
|
||||
"entity_summary": {
|
||||
"system_id": "wordpress",
|
||||
"display_name": "WordPress",
|
||||
"cataloged_entity_total": 1,
|
||||
"child_entity_total": 0,
|
||||
"candidate_entity_total": 0,
|
||||
"workflow_complete_count": 1,
|
||||
"version_mapped_count": 0,
|
||||
"official_source_covered_count": 1,
|
||||
"history_full_complete_count": 1,
|
||||
"latest_green_count": 1,
|
||||
"version_gap_entity_count": 1,
|
||||
"workflow_gap_entity_count": 0,
|
||||
"plugin_total": 0,
|
||||
"entity_type_counts": {
|
||||
"system": 1
|
||||
},
|
||||
"top_entities": [],
|
||||
"backlog_preview": []
|
||||
},
|
||||
"items": [
|
||||
"wordpress--CVE-2007-1893",
|
||||
"wordpress--CVE-2007-1894",
|
||||
|
||||
在新工单中引用
屏蔽一个用户