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 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.18 </p>
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.17-red?style=for-the-badge" />
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
@@ -12,7 +12,7 @@ const program = new Command();
12
12
  program
13
13
  .name('omen')
14
14
  .description('OMEN — AI Security Engine & DevSecOps Audit Framework')
15
- .version('1.0.17');
15
+ .version('1.0.19');
16
16
 
17
17
  // Old command for backward compatibility
18
18
  program
@@ -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.6 (Security Audit)' }
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.17 (Security Audit)' }
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.17 - Protocolo Zero-Copy AI Ativo*\n`;
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.17</p>
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omen-sec-cli",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "OMEN — AI Security Engine",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"
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.17 \n'));
12
+ console.log(chalk.gray(' Version: 1.0.19 \n'));
13
13
  }
14
14
 
15
15
  export function showHelp() {