🔐 Access OT Security Audit Tool

Please provide your details to continue

Please enter your first name
Please enter your last name
Please enter a valid email address
Please enter a valid 10-digit mobile number

Your information will be stored locally and included in audit reports for authentication purposes.

🛡️ OT Security Audit Tool

Comprehensive Industrial Control Systems Security Assessment
`; const blob = new Blob([fullHTML], { type: 'text/html' }); const url = window.URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = `OT_Audit_Report_${clientName.replace(/\s+/g, '_')}_${auditDate}.html`; document.body.appendChild(a); a.click(); document.body.removeChild(a); window.URL.revokeObjectURL(url); } // Close modal when clicking outside window.onclick = function(event) { const modal = document.getElementById('reportModal'); if (event.target == modal) { modal.style.display = 'none'; } } // Initialize on load window.onload = function() { // Check if user is already registered checkUserRegistration(); // Update user display if logged in if (currentUser) { updateUserDisplay(); } }; // Auto-save every 60 seconds (silently, no alert) setInterval(function() { saveProgress(); }, 60000);