aura-security 0.4.6 → 0.4.7
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/cli.js +1 -1
- package/package.json +1 -1
- package/visualizer/index-minimal.html +34 -0
- package/visualizer/landing.html +2 -2
package/dist/cli.js
CHANGED
|
@@ -24,7 +24,7 @@ import { existsSync, writeFileSync, mkdirSync } from 'fs';
|
|
|
24
24
|
import { join, resolve, basename } from 'path';
|
|
25
25
|
import { spawnSync } from 'child_process';
|
|
26
26
|
const AURA_URL = process.env.AURA_URL ?? 'http://127.0.0.1:3000';
|
|
27
|
-
const VERSION = '0.4.
|
|
27
|
+
const VERSION = '0.4.7';
|
|
28
28
|
// ANSI colors for terminal output
|
|
29
29
|
const colors = {
|
|
30
30
|
reset: '\x1b[0m',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aura-security",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"description": "Deterministic security auditing engine with optional AI advisory layer. Run as CLI, CI step, or service. AI does not make enforcement decisions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -210,6 +210,33 @@
|
|
|
210
210
|
color: white;
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
+
.home-link {
|
|
214
|
+
display: flex;
|
|
215
|
+
align-items: center;
|
|
216
|
+
gap: 6px;
|
|
217
|
+
padding: 6px 12px;
|
|
218
|
+
background: var(--bg-tertiary);
|
|
219
|
+
border: 1px solid var(--border);
|
|
220
|
+
border-radius: 6px;
|
|
221
|
+
color: var(--text-secondary);
|
|
222
|
+
text-decoration: none;
|
|
223
|
+
font-size: 12px;
|
|
224
|
+
font-weight: 500;
|
|
225
|
+
transition: all 0.15s;
|
|
226
|
+
margin-left: 16px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.home-link:hover {
|
|
230
|
+
background: var(--bg-secondary);
|
|
231
|
+
color: var(--text-primary);
|
|
232
|
+
border-color: var(--border-light);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.home-link svg {
|
|
236
|
+
width: 14px;
|
|
237
|
+
height: 14px;
|
|
238
|
+
}
|
|
239
|
+
|
|
213
240
|
.nav-tabs {
|
|
214
241
|
display: flex;
|
|
215
242
|
gap: 4px;
|
|
@@ -626,6 +653,13 @@
|
|
|
626
653
|
<span>aurasecurity</span>
|
|
627
654
|
</div>
|
|
628
655
|
|
|
656
|
+
<a href="https://aurasecurity.io" class="home-link">
|
|
657
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
|
|
658
|
+
<path d="M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z"/>
|
|
659
|
+
</svg>
|
|
660
|
+
Home
|
|
661
|
+
</a>
|
|
662
|
+
|
|
629
663
|
<div class="nav-tabs">
|
|
630
664
|
<button class="nav-tab active" onclick="showView('scan')">Scan</button>
|
|
631
665
|
<button class="nav-tab" onclick="showView('reports')">Reports</button>
|
package/visualizer/landing.html
CHANGED
|
@@ -1497,7 +1497,7 @@
|
|
|
1497
1497
|
<a href="#features" class="nav-link">Outcomes</a>
|
|
1498
1498
|
<a href="#architecture" class="nav-link">How it Works</a>
|
|
1499
1499
|
<a href="https://github.com/aurasecurityio/aura-security" target="_blank" class="nav-link">GitHub</a>
|
|
1500
|
-
<a href="/app" class="btn btn-primary">Open Dashboard</a>
|
|
1500
|
+
<a href="https://app.aurasecurity.io/app" class="btn btn-primary">Open Dashboard</a>
|
|
1501
1501
|
</div>
|
|
1502
1502
|
</div>
|
|
1503
1503
|
</nav>
|
|
@@ -1904,7 +1904,7 @@
|
|
|
1904
1904
|
<a href="https://github.com/aurasecurityio/aura-security" target="_blank">GitHub</a>
|
|
1905
1905
|
<a href="https://www.npmjs.com/package/aura-security" target="_blank">npm</a>
|
|
1906
1906
|
<a href="https://pypi.org/project/aura-security/" target="_blank">PyPI</a>
|
|
1907
|
-
<a href="/app">Dashboard</a>
|
|
1907
|
+
<a href="https://app.aurasecurity.io/app">Dashboard</a>
|
|
1908
1908
|
</div>
|
|
1909
1909
|
</div>
|
|
1910
1910
|
<div class="footer-right">
|