D5Protection of Information Assets

Protection of Information Assets: Common Mistakes

Relying on passwords alone for authentication of critical systems.

Single-factor authentication (passwords only) is vulnerable to phishing, brute force attacks, credential stuffing, and social engineering. For systems processing sensitive data, this level of protection is inadequate. Regulatory frameworks increasingly require stronger authentication for high-risk access.

Correct approach: Implement multi-factor authentication (MFA) for access to critical systems. Combine something the user knows (password) with something the user has (token) or something the user is (biometric).

Confusing symmetric and asymmetric encryption use cases.

Symmetric encryption (same key for encryption and decryption) is fast and suitable for bulk data encryption. Asymmetric encryption (public and private key pair) is slower but solves the key distribution problem and enables digital signatures. Using them incorrectly leads to performance issues or security weaknesses.

Correct approach: Use symmetric encryption for encrypting large volumes of data. Use asymmetric encryption for key exchange, digital signatures, and scenarios where secure key distribution is needed. Many protocols (such as TLS) combine both approaches.

Assuming a firewall alone provides adequate network security.

Firewalls filter traffic based on rules but cannot detect all threats, especially those within encrypted traffic, insider threats, or application-layer attacks. A defense-in-depth strategy requires multiple complementary controls at different layers.

Correct approach: Implement defense in depth with firewalls, intrusion detection and prevention systems (IDS/IPS), network segmentation, endpoint protection, and security monitoring working together.

Granting users more access than they need to perform their jobs.

Violating the principle of least privilege increases the risk of unauthorized data access, accidental modification, and insider threats. Excessive privileges also expand the blast radius of compromised accounts. Access creep (accumulating permissions over time) is a common contributor.

Correct approach: Apply the principle of least privilege. Grant users only the minimum access required for their current role. Conduct periodic access reviews and remove unnecessary permissions promptly.

Treating data classification as a one-time activity.

Data sensitivity can change over time as business context evolves. A document that was confidential during development may become public after release, or vice versa. Without periodic review, classification labels become outdated and misleading, resulting in either over-protection or under-protection.

Correct approach: Implement a data classification policy with periodic reviews. Assign data owners who are responsible for maintaining accurate classifications throughout the data lifecycle.

Neglecting security awareness training for all employees.

Technical controls cannot fully compensate for human error. Phishing, social engineering, and careless data handling remain leading causes of security incidents. Employees who are not trained to recognize threats become the weakest link in the security chain.

Correct approach: Conduct regular security awareness training for all employees, including executives. Tailor content to different roles and supplement with simulated phishing exercises and periodic reminders.

Assuming cloud providers handle all aspects of security.

Cloud security follows a shared responsibility model. The cloud provider secures the infrastructure, but the customer is responsible for securing data, access controls, configurations, and applications within the cloud environment. Misunderstanding this model leads to gaps in security coverage.

Correct approach: Understand and document the shared responsibility model for each cloud service. Ensure the organization implements controls for its portion of the responsibility, including identity management, data encryption, and configuration hardening.

Failing to establish and test an incident response plan.

Without a documented and rehearsed incident response plan, organizations respond to security incidents in an ad hoc manner. This leads to slower containment, greater damage, evidence destruction, and potential regulatory violations. Untested plans often contain gaps or outdated contact information.

Correct approach: Develop a formal incident response plan that covers detection, containment, eradication, recovery, and lessons learned. Test the plan regularly through tabletop exercises and simulations.

Using outdated or weak encryption algorithms.

Encryption algorithms that were once considered strong (such as DES, MD5, or SHA-1) are now vulnerable to modern computing power. Using deprecated algorithms gives a false sense of security while leaving data exposed to attack.

Correct approach: Use current, industry-accepted encryption algorithms (such as AES-256 for symmetric encryption and RSA-2048 or higher, or elliptic curve cryptography, for asymmetric encryption). Monitor cryptographic standards and update algorithms as recommendations evolve.

Overlooking network segmentation as a security control.

A flat network allows an attacker who compromises one system to move laterally to any other system on the network. Without segmentation, a single breach can quickly escalate to a full network compromise. Critical systems, such as databases and payment processing, require isolation.

Correct approach: Segment the network into zones based on function, sensitivity, and trust level. Use firewalls, VLANs, and access control lists to restrict traffic between segments. Apply the principle of least privilege to network access.