Blog | G5 Cyber Security

IT Head Access Control: Email & Backups

TL;DR

It’s not reasonable for a Head of IT to have *no* access to email or backup management systems. Complete exclusion creates risks and hinders effective cyber security and disaster recovery. Access should be limited based on the ‘least privilege’ principle, using strong authentication and monitoring.

Solution Guide: Controlling Access for the Head of IT

  1. Understand the Risk
  • Implement the Principle of Least Privilege
  • Don’t give full admin access. Instead, grant only what’s needed to perform their duties.

  • Technical Implementation – Email Access Control (Example: Microsoft 365)
  • Use Role-Based Access Control (RBAC). For read-only audit access:

    # PowerShell example (requires the Exchange Online module)
    Get-Mailbox | Where {$_.Name -eq "HeadOfIT@example.com"} | Add-MailboxPermission -User 'AuditLogReaderRole' -AccessRights AuditAccess
    

    Create a dedicated audit log reader role with limited permissions.

  • Technical Implementation – Backup Access Control (Example: Veeam)
  • Veeam uses roles to control access. Create a custom role for the Head of IT:

  • Implement Multi-Factor Authentication (MFA)
  • Crucially, always enforce MFA on accounts with access to sensitive systems like email and backup servers.

  • Centralised Logging & Monitoring
  • Log all actions performed by the Head of IT within these systems. Use a Security Information and Event Management (SIEM) system to monitor for unusual activity.

  • Regular Access Reviews
  • At least quarterly, review the Head of IT’s permissions to ensure they remain appropriate.

  • Approval Workflows (Backup Restores)
  • For backup restores, implement a workflow requiring approval from another senior member of staff before any data is restored. This adds an extra layer of security and accountability.

  • Documentation & Training
  • Document all access controls and procedures. Provide training to the Head of IT on their responsibilities and limitations.

    Exit mobile version