omen-sec-cli 1.0.18 → 1.0.19
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/README.md +2 -2
- package/bin/index.js +1 -1
- package/core/remote-scanner.js +2 -2
- package/core/reporters/fix-plan-reporter.js +1 -1
- package/core/ui-server.js +1 -1
- package/package.json +1 -1
- package/ui/banner.js +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# <p align="center"> <img src="https://img.icons8.com/nolan/128/security-shield.png" width="100" /> <br> OMEN SEC-CLI v1.0.
|
|
1
|
+
# <p align="center"> <img src="https://img.icons8.com/nolan/128/security-shield.png" width="100" /> <br> OMEN SEC-CLI v1.0.19 </p>
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://img.shields.io/badge/Version-1.0.
|
|
4
|
+
<img src="https://img.shields.io/badge/Version-1.0.19-red?style=for-the-badge" />
|
|
5
5
|
<img src="https://img.shields.io/badge/Phase--Based-DevSecOps-000000?style=for-the-badge&logo=openai" />
|
|
6
6
|
<img src="https://img.shields.io/badge/Zero--Copy-AI--Protocol-green?style=for-the-badge" />
|
|
7
7
|
</p>
|
package/bin/index.js
CHANGED
package/core/remote-scanner.js
CHANGED
|
@@ -15,7 +15,7 @@ export async function scanRemoteTarget(targetUrl) {
|
|
|
15
15
|
const response = await axios.get(targetUrl, {
|
|
16
16
|
timeout: 15000,
|
|
17
17
|
validateStatus: () => true,
|
|
18
|
-
headers: { 'User-Agent': 'OMEN-SEC-CLI/1.0.
|
|
18
|
+
headers: { 'User-Agent': 'OMEN-SEC-CLI/1.0.19 (Security Audit)' }
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
serverStatus = response.status;
|
|
@@ -338,7 +338,7 @@ export async function scanRemoteTarget(targetUrl) {
|
|
|
338
338
|
const res = await axios.get(testUrl.href, {
|
|
339
339
|
timeout: 5000,
|
|
340
340
|
validateStatus: () => true,
|
|
341
|
-
headers: { 'User-Agent': 'OMEN-SEC-CLI/1.0.
|
|
341
|
+
headers: { 'User-Agent': 'OMEN-SEC-CLI/1.0.19 (Security Audit)' }
|
|
342
342
|
});
|
|
343
343
|
|
|
344
344
|
const evidence = {
|
|
@@ -41,6 +41,6 @@ export function generateFixPlan(scanData) {
|
|
|
41
41
|
});
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
md += `\n*Gerado automaticamente pelo OMEN SEC-CLI v1.0.
|
|
44
|
+
md += `\n*Gerado automaticamente pelo OMEN SEC-CLI v1.0.19 - Protocolo Zero-Copy AI Ativo*\n`;
|
|
45
45
|
return md;
|
|
46
46
|
}
|
package/core/ui-server.js
CHANGED
|
@@ -262,7 +262,7 @@ export async function startUIServer() {
|
|
|
262
262
|
</div>
|
|
263
263
|
|
|
264
264
|
<footer class="text-center text-gray-600 mt-16 border-t border-gray-900 pt-8 mb-10">
|
|
265
|
-
<p class="text-xs uppercase tracking-widest font-bold mb-2">OMEN Security Framework - v1.0.
|
|
265
|
+
<p class="text-xs uppercase tracking-widest font-bold mb-2">OMEN Security Framework - v1.0.19</p>
|
|
266
266
|
<p class="text-[10px] text-gray-700 italic">"The eye that never sleeps, the code that never fails."</p>
|
|
267
267
|
</footer>
|
|
268
268
|
</div>
|
package/package.json
CHANGED
package/ui/banner.js
CHANGED
|
@@ -9,7 +9,7 @@ export function showBanner() {
|
|
|
9
9
|
╚██████╔╝██║ ╚═╝ ██║███████╗██║ ╚████║
|
|
10
10
|
`));
|
|
11
11
|
console.log(chalk.cyan.bold(' OMEN — AI Security Engine '));
|
|
12
|
-
console.log(chalk.gray(' Version: 1.0.
|
|
12
|
+
console.log(chalk.gray(' Version: 1.0.19 \n'));
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
export function showHelp() {
|