×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

LOG IN TO YOUR ACCOUNT

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR PASSWORD?

AAH, WAIT, I REMEMBER NOW!

CREATE AN ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • INFO

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

What are the main pillars of computer security?

by Jamshid Shokrollahi / Saturday, 16 August 2025 / Published in Cybersecurity, EITC/IS/CSSF Computer Systems Security Fundamentals, Introduction, Introduction to computer systems security

Computer security, often referred to as cybersecurity or information security, is a discipline that aims to protect computer systems and the data they process from unauthorized access, damage, disruption, or theft. At the heart of all computer security initiatives are three foundational pillars, commonly known as the CIA triad: Confidentiality, Integrity, and Availability. These pillars are the guiding principles that inform the design, implementation, and assessment of security measures in any computing environment. Each pillar addresses a distinct aspect of security, and their effective implementation ensures a robust defense against a wide range of threats.

1. Confidentiality

Confidentiality is the principle of ensuring that information is accessible only to those authorized to have access. It is concerned with preventing unauthorized disclosure of information. In practical terms, this means that sensitive data—such as personal information, trade secrets, or classified government materials—should not be exposed to individuals, systems, or processes that do not have the requisite permissions.

Implementation of confidentiality measures typically involves:

– Authentication: Verifying the identity of users and systems through passwords, biometrics, security tokens, smart cards, and other mechanisms.
– Access Control: Defining and enforcing policies that specify who can access what data and under what circumstances. Common models include discretionary access control (DAC), mandatory access control (MAC), and role-based access control (RBAC).
– Encryption: Transforming information into an unreadable format for unauthorized users. Encryption is applied to data at rest (e.g., files on a hard drive), data in transit (e.g., data sent over the internet), and, increasingly, data in use.
– Data Masking and Redaction: Concealing specific data elements within a dataset to prevent disclosure, especially in environments where entire datasets must be shared but only certain details are sensitive.

For example, in online banking, confidentiality ensures that account information, transaction records, and personal identification details are only visible to the account holder and authorized bank employees, not to external actors or other customers.

Threats to Confidentiality:
– Eavesdropping or Interception: Unauthorized parties listening to network traffic (e.g., via packet sniffers on unsecured Wi-Fi).
– Data Breaches: Unauthorized access to databases due to vulnerabilities or compromised credentials.
– Social Engineering: Attackers manipulating individuals into divulging confidential information.

2. Integrity

Integrity refers to the accuracy and completeness of data. It ensures that information is not altered in an unauthorized manner, whether maliciously or accidentally, during storage, transmission, or processing. The principle of integrity also covers the assurance that a system and its software perform their intended functions without unauthorized modification.

To maintain integrity, organizations implement measures such as:

– Checksums and Hash Functions: Generating unique digital fingerprints for data so that unauthorized changes can be detected by comparing stored and computed hashes.
– Digital Signatures: Providing cryptographic proof of the origin and unaltered state of a document or message.
– Access Controls and Audit Trails: Restricting who can modify data and keeping records of changes to facilitate detection and investigation of unauthorized modifications.
– Version Control Systems: Managing changes to documents and code by tracking revisions, facilitating rollbacks, and maintaining historical records.

For instance, in the context of electronic health records, integrity measures ensure that patient records cannot be altered by unauthorized individuals and that any changes are traceable to the responsible healthcare professional.

Threats to Integrity:
– Data Tampering: Deliberate alteration of data by attackers, such as modifying financial records to commit fraud.
– Transmission Errors: Unintentional changes due to network glitches or hardware faults.
– Malware: Viruses or other malicious software that corrupt files or alter system behavior.

3. Availability

Availability is the principle that ensures authorized users have reliable and timely access to information and resources when needed. This involves maintaining the functionality of systems, networks, and data, even in the face of failures, attacks, or disasters.

Mechanisms for ensuring availability include:

– Redundancy: Deploying backup systems, failover clusters, and redundant network connections to prevent single points of failure.
– Regular Backups: Copying data regularly so that it can be restored after a loss or corruption event.
– Disaster Recovery Planning: Preparing for large-scale disruptions with plans that outline how to restore operations quickly.
– Denial-of-Service (DoS) Protection: Implementing firewalls, intrusion prevention systems, and anti-DoS technologies to mitigate attacks that aim to overwhelm resources and render services unavailable.
– Patch Management: Keeping systems updated to protect against exploits that could crash or disable services.

For example, in a cloud-based service, availability measures ensure that users can access their accounts and data at any time, even if there is a hardware failure at one of the provider’s data centers.

Threats to Availability:
– Denial-of-Service (DoS) and Distributed Denial-of-Service (DDoS) Attacks: Flooding a system with traffic to exhaust its resources.
– Hardware Failures: Power outages, disk crashes, or other physical problems that interrupt service.
– Natural Disasters: Events such as earthquakes, floods, or fires that damage infrastructure.
– Ransomware: Malicious software that encrypts data and demands payment to restore access.

Interrelationship of the CIA Triad

These three pillars are deeply interconnected. Enhancing one may impact the others, and effective security strategies must strike a balance among them. For example, while encrypting data improves confidentiality, it can also affect availability if the encryption keys are lost, making the data irretrievable. Similarly, overly restrictive access controls that protect confidentiality and integrity may hinder legitimate users’ access, impacting availability.

Security professionals must assess risks and design controls that optimize all three pillars according to the organization’s needs, regulatory obligations, and threat landscape.

Beyond the CIA Triad: Expanding the Security Model

While the CIA triad forms the foundational framework, modern computer security often extends the model to address additional considerations, including:

– Authentication: Ensuring that entities (users, devices, systems) are who they claim to be.
– Authorization: Determining whether a given entity is permitted to perform a specific action.
– Accountability (Non-repudiation): Ensuring actions can be traced to responsible entities, preventing denial of actions performed.
– Auditability: Providing mechanisms to log and review actions for forensic and compliance purposes.
– Privacy: Safeguarding personally identifiable information (PII) in alignment with legal and ethical standards.

Although these extensions are important, the CIA triad remains the conceptual core of computer security.

Examples Illustrating the CIA Triad

1. Online Banking:
– *Confidentiality:* SSL/TLS encryption protects communications between the user’s browser and the bank’s servers.
– *Integrity:* Transaction logs and digital signatures prevent tampering with account balances or transaction histories.
– *Availability:* Distributed servers and load balancing ensure customers can access their accounts at all times.

2. Healthcare Information Systems:
– *Confidentiality:* Access restrictions prevent unauthorized personnel from viewing patient records.
– *Integrity:* Audit trails and change logs track modifications to medical records.
– *Availability:* Backup power supplies and redundant networks ensure that medical staff can access patient data during emergencies.

3. E-commerce Websites:
– *Confidentiality:* User credentials and payment information are encrypted and stored securely.
– *Integrity:* Hashes are used to verify that product listings and order details have not been altered.
– *Availability:* Cloud hosting platforms provide scalability and resilience to handle surges in traffic and protect against DoS attacks.

Common Security Controls Aligned with the Pillars

– Firewalls: Enforce confidentiality and availability by restricting unauthorized access and filtering network traffic.
– Intrusion Detection and Prevention Systems (IDPS): Monitor systems for signs of breaches that could compromise integrity or availability.
– User Access Reviews: Periodically reviewing user privileges to ensure that only authorized individuals maintain access, safeguarding confidentiality and integrity.
– Security Policies and Training: Establishing guidelines and raising awareness among users to ensure correct handling of sensitive data and response to security incidents.

Legal and Regulatory Considerations

Adherence to the CIA triad is also reflected in various standards and regulations. For instance:

– The Health Insurance Portability and Accountability Act (HIPAA): Mandates confidentiality, integrity, and availability of protected health information.
– The General Data Protection Regulation (GDPR): Requires organizations to implement appropriate security measures to protect personal data, addressing all three pillars.
– The Payment Card Industry Data Security Standard (PCI DSS): Specifies requirements for securing cardholder data, including encryption (confidentiality), logging (integrity), and business continuity (availability).

Security Frameworks and the CIA Triad

Several security frameworks, such as the NIST Cybersecurity Framework and ISO/IEC 27001, are built upon the CIA triad. They provide structured approaches to identifying, assessing, and managing risks associated with confidentiality, integrity, and availability.

Risk Management and the CIA Triad

Risk management in computer security involves identifying assets, assessing threats and vulnerabilities, evaluating potential impacts, and applying controls to manage risks to the CIA pillars. For example, an organization might perform a risk assessment to determine how a ransomware attack could affect data availability and then implement measures such as regular backups and employee training to mitigate this risk.

The Role of Human Factors

Human behavior plays a significant role in maintaining the CIA triad. Errors such as weak passwords, mishandling of confidential information, or failure to apply software updates can undermine all three pillars. Consequently, security awareness training and a culture of shared responsibility are critical components of a comprehensive security program.

Emerging Trends and Future Challenges

As technology evolves, new threats and complexities emerge that challenge the application of the CIA triad. The proliferation of cloud computing, mobile devices, Internet of Things (IoT), and artificial intelligence introduces novel vectors for attacks and requires adaptations of traditional security approaches. For example:

– Cloud Environments: Data may be stored across multiple locations and accessed from various devices, complicating control over confidentiality and availability.
– IoT Devices: Often have limited security features, making them susceptible to breaches affecting integrity and availability.
– Remote Work: Expands the attack surface, requiring new strategies for maintaining the CIA triad outside traditional network perimeters.

Security professionals must stay abreast of such developments and continuously refine controls to uphold the principles of confidentiality, integrity, and availability.

The pillars of computer security—confidentiality, integrity, and availability—provide a comprehensive framework for protecting information and resources in computer systems. Every security control, policy, and best practice is ultimately designed to support one or more of these pillars. By understanding their definitions, the threats they address, and the practical means of implementation, organizations can better safeguard their assets in an increasingly complex digital landscape.

Other recent questions and answers regarding Introduction to computer systems security:

  • Can scaling up a secure threat model impact its security?
  • How can buffer overflows in computer systems lead to security vulnerabilities and unauthorized access?
  • What are some potential issues with virtual machines (VMs) that can introduce security vulnerabilities?
  • How can the misuse of pseudo-random number generators (PRNGs) lead to security vulnerabilities in computer systems?
  • What are some examples of vulnerabilities in the software development and distribution process that can compromise computer systems security?
  • How has the increase in the number of certificate authorities affected the threat model in computer systems security?
  • Why is it important to consider a wide range of potential attacks when designing security mechanisms, rather than relying on a specific defense mechanism?
  • How can attackers exploit the compromise of a certificate authority to undermine the trust in secure communication?
  • What is the potential vulnerability associated with assuming a specific attack or attack vector in threat modeling?
  • Why is it important to design systems that do not rely solely on user vigilance in mitigating security risks?

View more questions and answers in Introduction to computer systems security

More questions and answers:

  • Field: Cybersecurity
  • Programme: EITC/IS/CSSF Computer Systems Security Fundamentals (go to the certification programme)
  • Lesson: Introduction (go to related lesson)
  • Topic: Introduction to computer systems security (go to related topic)
Tagged under: CIA Triad, Computer Security, Cybersecurity, Data Protection, Information Security, Regulatory Compliance, Risk Management, Security Frameworks
Home » Cybersecurity » EITC/IS/CSSF Computer Systems Security Fundamentals » Introduction » Introduction to computer systems security » » What are the main pillars of computer security?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (105)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Medium publ.)
  • About
  • Contact

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.
Eligibility for EITCA Academy 90% EITCI DSJC Subsidy support
90% of EITCA Academy fees subsidized in enrolment

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on X
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF) in series of projects since 2007, currently governed by the European IT Certification Institute (EITCI) since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    EITCA Academy
    • EITCA Academy on social media
    EITCA Academy


    © 2008-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    CHAT WITH SUPPORT
    Do you have any questions?
    We will reply here and by email. Your conversation is tracked with a support token.