Calculadora ciberriesgo

Bonding Brokers

¿Cuánto te costaría un ciberataque?

Calculadora gratuita para estimar tu exposición.

Facturación anual: Menos de 1M € 1M – 5M € 5M – 20M € Número de empleados: 1 – 10 11 – 50 Más de 50 Sector: Despacho profesional Servicios / Consultoría E-commerce Industria / logística Salud / Legal / Financiero ¿Gestionas datos sensibles de clientes?
Sí No
¿Tienes copias externas actualizadas?
Sí No
¿Tienes antivirus/firewall/mantenimiento externo?
Sí No
Tu nombre: Tu email: Calcular impacto
document.getElementById(‘cyberForm’).addEventListener(‘submit’, function(e) { e.preventDefault(); const form = new FormData(e.target); let riesgo = 0; riesgo += parseInt(form.get(‘facturacion’)) * 3; riesgo += parseInt(form.get(‘empleados’)) * 2; riesgo += parseInt(form.get(‘sector’)); riesgo += parseInt(form.get(‘datos’)); riesgo += parseInt(form.get(‘copias’)); riesgo += parseInt(form.get(‘proteccion’)); let costeMin = riesgo * 1200; let costeMax = riesgo * 2800; let riesgoLabel = »; let bg = »; let color = »; if (riesgo >= 20) { riesgoLabel = ‘ALTO’; bg = ‘#f9d6d5’; color = ‘#842029’; } else if (riesgo >= 14) { riesgoLabel = ‘MEDIO’; bg = ‘#fff4d9’; color = ‘#8a6d1d’; } else { riesgoLabel = ‘BAJO’; bg = ‘#e3f7e3’; color = ‘#27632a’; } const nombre = form.get(‘nombre’); const whatsappMsg = encodeURIComponent(`Hola, soy ${nombre}. He usado la calculadora de ciberataques y me ha salido un riesgo ${riesgoLabel}. ¿Podemos hablar para revisar mi cobertura?`); const emailMsg = encodeURIComponent(`Hola, he usado vuestra calculadora de riesgos cibernéticos. Me gustaría revisar mi exposición. Mi resultado fue: Riesgo ${riesgoLabel}, coste estimado entre ${costeMin} y ${costeMax} €.`); document.getElementById(‘resultado’).innerHTML = `

Tu riesgo es ${riesgoLabel}.

Un ciberataque podría costarte entre ${costeMin.toLocaleString(‘es-ES’)} € y ${costeMax.toLocaleString(‘es-ES’)} €.

`; });