Overview

7 Protecting your assets

This chapter presents a layered, data-driven approach to protecting organizational assets, uniting policy, people, and technology to preserve confidentiality, integrity, and availability. It centers on identity and access management as the gatekeeper: establishing lifecycle-driven identities, strong authentication (including MFA, biometrics, and context-aware proofing), and granular authorization through models like RBAC and ABAC under the principle of least privilege. SSO and federation extend trusted access across domains, while service and hardware authentication further harden inter-service communications and device trust. Technical safeguards are complemented by physical controls, and all protections are organized as preventive, detective, and corrective measures, with metrics embedded throughout to guide risk decisions and balance false positives and negatives.

The chapter then traces data security across its lifecycle—at rest, in transit, and in use—emphasizing modern encryption practices (symmetric/asymmetric), current TLS versions, and robust hashing (e.g., SHA‑256 and above) while retiring obsolete methods. It highlights backup and recovery as critical defenses against ransomware and extortion, requiring encrypted, tested backups tied to clear RPO and RTO objectives. Equally vital is the human layer: role-relevant cybersecurity training and frequent awareness touchpoints that build a security-minded culture. Access permission governance, regular audits, and aligned policies keep privileges right-sized as roles and business needs evolve.

Operational resilience is built through disciplined configuration management, timely patching, secure hardware lifecycle practices, comprehensive logging, and a secure SDLC that integrates threat modeling, secure coding, SAST/DAST, penetration testing, code signing, hardening, and continuous monitoring/SOAR. Network resilience combines layered defenses, segmentation, and encryption with environmental protections, redundancy, failover, load balancing, and capacity planning—often leveraging elastic cloud resources—while accounting for hybrid cloud and third‑party risks through testing and tabletop exercises. Throughout, the chapter stresses metrics and continuous improvement: tracking IAM efficiency, training outcomes, encryption and backup coverage, baseline drift, and remediation speed to sustain a measurable, adaptive security posture.

An example of a Single Sign-On (SSO) process.
Federated identities require a user to be authenticated at their home organization, after which separate security domains use SAML to verify that they can trust and accept user identities from one another.
Security controls can be categorized by their type as well as their function.
The left shows Acme Corp’s identity and access management metrics before IAM improvements. On the right are the identity and access management metrics after IAM improvements.
The left side shows the review of training and awareness metrics before implementing a comprehensive training program. The right side shows the improvements after implementing the training program.
On the left shows the Secure Tech data security dashboard before implementing data protection practices. On the right is the data security dashboard after implementing data protection practices.
An overview of how security is integrated into each phase of the SDLC, highlighting critical security tasks associated with planning, development, testing, deployment, and maintenance stages.
The left side shows the SecureNet Inc. platform security dashboard before implementing the new security monitoring strategy. After implementing the new platform security monitoring strategy, the platform security dashboard is on the right.
Exercise: Match the testing method with the SDLC phase.
Answers to exercise 7.4.

Summary

  • Identity and access metrics measure how well users are managed and authenticated.
  • Authentication success and failure rates highlight security and user access reliability.
  • Training metrics track the scope and effectiveness of cybersecurity education programs.
  • Data security is evaluated by tracking encryption use and incident response success.
  • Metrics for platform security assess the maintenance and response to software vulnerabilities.
  • Resilience in infrastructure is measured by incident responses and system availability.

FAQ

What are Identity Management (IdM) and Identity Lifecycle Management (ILM), and why do they matter?IdM is the process and technology that verifies identities, authenticates users, and authorizes access to systems and data. ILM governs each identity from creation to modification to offboarding so the right people have the right access at the right time—and lose it when they shouldn’t have it. Centralized IdM enforces consistent policies, scales with org changes, and provides a single source of truth for audits and compliance.
What authentication methods are available, and how should we choose among them?Common options include: - Passwords: Familiar but vulnerable to reuse, phishing, and brute force; often need reinforcement. - Tokens/MFA/2FA: Codes from hardware fobs or apps; context-aware MFA adapts to risk (device, location). - Biometrics: Strong identity binding (fingerprint/face) but requires careful privacy handling. - Passwordless: Aligns with Zero Trust but slower to adopt in many orgs. Choice depends on asset risk, usability needs, and operational resources. Also authenticate services (tokens/certificates for APIs) and hardware (device allowlists, TPM-backed checks) to extend trust beyond users.
How do DAC, MAC, RBAC, and ABAC differ, and when should each be used?- DAC (Discretionary): Owners grant permissions; flexible for collaboration but prone to human error. - MAC (Mandatory): Centralized labels and policies; highly secure for government/military contexts. - RBAC (Role-Based): Permissions tied to job roles; scalable, simpler administration for clear org structures. - ABAC (Attribute-Based): Policies evaluate attributes (user, resource, environment); most granular and dynamic. Pick based on your security requirements, governance model, and need for flexibility and scale.
What is the principle of least privilege, and how do we enforce it?Least privilege grants only the minimum access needed to perform a task. Enforce it by: - Defining roles and standard access paths (RBAC) and adding context where needed (ABAC). - Reviewing access regularly and logging changes. - Aligning access to documented job attributes and removing access promptly at offboarding.
What is context-based identity proofing and credential binding?It continuously evaluates signals (time, location, device, behavior) to validate that the current user context matches expectations. Credential binding ties access to known devices or environments so low-risk contexts reduce friction while high-risk contexts trigger additional verification (for example, extra MFA if logging in from a new country).
How do Single Sign-On (SSO) and federated identity work, and when should we use each?SSO lets a user authenticate once, then reuse a secure token to access multiple services without reentering credentials. Federated identity extends trust across domains (partners) using standards like SAML, so an identity verified in one organization can access resources in another. Use SSO to simplify access within your estate; use federation to enable trusted access across separate organizations or security domains.
Why are physical access controls still critical to cybersecurity?Physical breaches can lead to theft, vandalism, malware introduction (for example, USB drops), or rogue devices in data centers. Use layered defenses: locks and badges, biometric entry, visitor logs and escorts, cameras, tamper-evident logging of door access, and periodic audits and testing aligned to risk.
How should we protect data at rest, in transit, and in use?- Data at rest: Encrypt storage, control access, run integrity checks. Use strong crypto and retire weak ciphers. - Data in transit: Use TLS (v1.2+), VPNs where appropriate, and endpoint authentication to prevent eavesdropping/tampering. - Data in use: Apply application-level controls and encryption where feasible, balancing performance and security. Hashing best practices: Use SHA-256/384/512 or SHA-3. Avoid MD5/SHA-1 due to collision weaknesses.
How do backups, RTO, and RPO help counter ransomware and data extortion?Backups (encrypted in transit and at rest) enable recovery without paying ransom. Test restores regularly. Set: - RTO (Recovery Time Objective): Maximum acceptable time to restore service. - RPO (Recovery Point Objective): Maximum acceptable data loss measured in time between backups. Pair solid backup/recovery with strong preventive controls and monitoring to reduce extortion risk.
Which metrics should we track to know if our protections are working?- IAM/auth/access: Provision/de-provision time; auth success/failure rates; identity audit issues; unauthorized physical access incidents; mean time to respond to auth anomalies. - Training/awareness: Completion rates, test scores, pre/post improvements, retraining counts, repeat failures, and incident reduction after training. - Data security: Ratio of encrypted to non-encrypted systems, deprecated crypto in use, incident counts, backup/test success rates, RPO/RTO compliance. - Platform/configuration: Deviations from baseline, patch cadence, unauthorized software installs, mean time to remediate misconfigs/update systems, uptime, and resource usage. Incorporate drift detection for real-time baseline enforcement.

pro $24.99 per month

  • access to all Manning books, MEAPs, liveVideos, liveProjects, and audiobooks!
  • choose one free eBook per month to keep
  • exclusive 50% discount on all purchases
  • renews monthly, pause or cancel renewal anytime

lite $19.99 per month

  • access to all Manning books, including MEAPs!

team

5, 10 or 20 seats+ for your team - learn more


choose your plan

team

monthly
annual
$49.99
$499.99
only $41.67 per month
  • five seats for your team
  • access to all Manning books, MEAPs, liveVideos, liveProjects, and audiobooks!
  • choose another free product every time you renew
  • choose twelve free products per year
  • exclusive 50% discount on all purchases
  • renews monthly, pause or cancel renewal anytime
  • renews annually, pause or cancel renewal anytime
  • Data-Driven Cybersecurity ebook for free
choose your plan

team

monthly
annual
$49.99
$499.99
only $41.67 per month
  • five seats for your team
  • access to all Manning books, MEAPs, liveVideos, liveProjects, and audiobooks!
  • choose another free product every time you renew
  • choose twelve free products per year
  • exclusive 50% discount on all purchases
  • renews monthly, pause or cancel renewal anytime
  • renews annually, pause or cancel renewal anytime
  • Data-Driven Cybersecurity ebook for free
choose your plan

team

monthly
annual
$49.99
$499.99
only $41.67 per month
  • five seats for your team
  • access to all Manning books, MEAPs, liveVideos, liveProjects, and audiobooks!
  • choose another free product every time you renew
  • choose twelve free products per year
  • exclusive 50% discount on all purchases
  • renews monthly, pause or cancel renewal anytime
  • renews annually, pause or cancel renewal anytime
  • Data-Driven Cybersecurity ebook for free