feat: enhance security features and backend schema

- Added new cron jobs for automatic IP block expiration and threat intelligence synchronization to improve security management.
- Expanded the backend schema to include various types of cyber attack classifications, security event statuses, and incident action types for better incident tracking and response.
- Introduced new tables for network sensors, IP reputation, port rules, threat intelligence feeds, and security events to enhance the overall security infrastructure.
- Updated API definitions to incorporate new security-related modules, ensuring comprehensive access to security functionalities.
This commit is contained in:
2025-11-15 07:25:01 -03:00
parent 118051ad56
commit ea01e2401a
11 changed files with 2781 additions and 472 deletions

View File

@@ -0,0 +1,30 @@
<script lang="ts">
import CybersecurityWizcard from '$lib/components/ti/CybersecurityWizcard.svelte';
import { resolve } from '$app/paths';
</script>
<svelte:head>
<title>Cibersecurity SGSE • Wizcard TI</title>
</svelte:head>
<section class="space-y-8 p-4 lg:p-8">
<header class="flex flex-wrap items-center justify-between gap-4">
<div>
<p class="text-sm font-semibold uppercase tracking-widest text-primary">Cibersecurity • SGSE</p>
<h1 class="text-4xl font-black text-base-content">
Wizcard de Segurança Avançada
</h1>
<p class="text-base-content/70 max-w-3xl text-sm">
Detecta DDoS, SQLi, ataques avançados e comportamentos anômalos em tempo real.
Permite bloquear IPs/portas, gerar relatórios refinados, configurar políticas e
manter a operação do SGSE blindada.
</p>
</div>
<a href={resolve('/ti')} class="btn btn-outline btn-primary">Voltar para TI</a>
</header>
<CybersecurityWizcard />
</section>