fullcourtdefense-cli 1.7.15 → 1.7.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/local-scan.js +3 -2
- package/dist/version.json +1 -1
- package/package.json +1 -1
|
@@ -1111,7 +1111,7 @@ function compactScanHtml(args) {
|
|
|
1111
1111
|
.workflowCard { min-height: 118px; }
|
|
1112
1112
|
.workflowCard b { font-size: 18px; }
|
|
1113
1113
|
.workflowCard span { font-size: 13px; }
|
|
1114
|
-
.landingScanGrid { display: grid; grid-template-columns: repeat(
|
|
1114
|
+
.landingScanGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
|
|
1115
1115
|
.scanTypeGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 12px 0; }
|
|
1116
1116
|
.advancedScanGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 8px 0 12px; }
|
|
1117
1117
|
.card:hover, .card.active { border-color: #2563eb; background: #eff6ff; transform: translateY(-1px); }
|
|
@@ -1202,6 +1202,7 @@ function compactScanHtml(args) {
|
|
|
1202
1202
|
<div class="landingScanGrid">
|
|
1203
1203
|
<button class="card workflowCard" data-workflow="bot"><b>Bot Scan</b><span>Red-team an internal bot, agent, or chat API.</span></button>
|
|
1204
1204
|
<button class="card workflowCard" data-workflow="posture"><b>Security Posture Scan</b><span>Run web-style endpoint security checkup.</span></button>
|
|
1205
|
+
<button class="card workflowCard" data-workflow="mcp"><b>MCP Scan</b><span>Scan an MCP server or protected gateway for risky tool paths.</span></button>
|
|
1205
1206
|
</div>
|
|
1206
1207
|
</div>
|
|
1207
1208
|
<div class="menuGroup">
|
|
@@ -1293,7 +1294,7 @@ function compactScanHtml(args) {
|
|
|
1293
1294
|
</div>
|
|
1294
1295
|
|
|
1295
1296
|
<div id="posture-fields" class="hidden">
|
|
1296
|
-
<div class="note">Security Posture Scan checks endpoint configuration, auth exposure, headers, transport, and operational security signals.
|
|
1297
|
+
<div class="note">Security Posture Scan checks HTTP endpoint configuration, auth exposure, headers, transport, and operational security signals. To test MCP tools, choose MCP Scan from the Security Scans cards.</div>
|
|
1297
1298
|
<div class="two">
|
|
1298
1299
|
<div>
|
|
1299
1300
|
<label>AI endpoint URL</label>
|
package/dist/version.json
CHANGED