The infrastructure and protocols used by threat actors to remotely communicate with, direct, and exfiltrate data from compromised systems. Disrupting C2 is a primary goal of incident response.
Real-World Example
An attacker hosts their Cobalt Strike C2 server behind Cloudflare Workers, making the malicious domain appear legitimate and bypassing basic domain reputation blocking.
See also: Beaconing, Malware, Lateral Movement
The foundational model of information security comprising Confidentiality (data accessible only to authorized parties), Integrity (data accuracy and completeness), and Availability (data accessible when needed).
Real-World Example
Ransomware attacks all three CIA pillars: it violates Confidentiality by stealing data, Integrity by encrypting files, and Availability by locking organizations out of their systems.
See also: Confidentiality, Integrity, Availability
A prioritized set of 18 cybersecurity best practices from the Center for Internet Security, organized into Implementation Groups (IG1-IG3) based on organizational maturity and resources.
Real-World Example
A CISO uses the CIS Controls to build a security roadmap: start with IG1 (basic hygiene — inventory, patching, MFA), then progressively implement IG2 and IG3 controls.
See also: NIST CSF, ISO 27001, Risk Management
The set of policies, controls, and technologies used to protect cloud-based systems, data, and infrastructure from threats. Covers IaaS, PaaS, and SaaS environments.
Real-World Example
A misconfigured S3 bucket exposes 100GB of customer PII publicly. Cloud security posture management (CSPM) tools would have detected the public access setting in real time.
See also: CASB, Misconfiguration, IAM
The CIA triad pillar protecting sensitive information from unauthorized disclosure. Achieved through encryption, access controls, and data classification.
Real-World Example
A healthcare organization encrypts all PHI (Protected Health Information) at rest using AES-256, ensuring that even if storage media is stolen, patient data cannot be read.
See also: CIA Triad, Encryption, DLP
An alternative security safeguard implemented when a required primary control cannot be applied due to technical or operational constraints. Must be documented and approved.
Real-World Example
A legacy ICS system cannot be patched (it would break industrial operations). A compensating control isolates it in a network segment with no internet access and enhanced monitoring.
See also: Risk Management, Audit Trail, ISO 27001
An automated attack that uses stolen username/password pairs from one breach to attempt login to other services, exploiting users who reuse passwords across multiple accounts.
Real-World Example
After the LinkedIn breach exposed 117M credentials, attackers used automated tools to test those credentials against Netflix, Spotify, and PayPal — successfully accessing accounts where passwords were reused.
See also: Brute Force, MFA, IAM
The mathematical science of securing communications and data by transforming plaintext into unreadable ciphertext using algorithms and keys.
Real-World Example
TLS 1.3 uses asymmetric cryptography (RSA/ECDH) to exchange a session key, then switches to symmetric AES-256-GCM for the actual data transfer — balancing security with performance.
See also: Encryption, PKI, TLS
Tools that continuously monitor cloud infrastructure for misconfigurations, compliance violations, and security risks across multi-cloud environments.
Real-World Example
CSPM detects that a developer accidentally made an Azure Blob container publicly accessible during testing. An automated alert and remediation policy instantly reverts it to private.
See also: Cloud Security, Misconfiguration, Compliance
A publicly maintained list of disclosed security vulnerabilities, each assigned a unique identifier (e.g., CVE-2021-44228). Maintained by MITRE and used universally across the security industry.
Real-World Example
Log4Shell (CVE-2021-44228) became the most critical CVE of 2021 — affecting millions of Java applications and requiring emergency patching globally within days of disclosure.
See also: CVSS, NVD, Patch Management
A standardized, vendor-agnostic system for rating the severity of cybersecurity vulnerabilities on a scale of 0.0–10.0, based on exploitability and impact metrics.
Real-World Example
Log4Shell received a CVSS 3.1 score of 10.0 — the highest possible — due to network-accessible remote code execution with no authentication or user interaction required.
See also: CVE, NVD, Patch Management
Lockheed Martin's model describing the seven sequential stages of a cyberattack: Reconnaissance, Weaponization, Delivery, Exploitation, Installation, C2, and Actions on Objectives.
Real-World Example
An analyst maps an APT intrusion to the kill chain: LinkedIn scraping (Recon) → spear phishing (Delivery) → macro execution (Exploitation) → Cobalt Strike (C2) → data theft (Actions).
See also: MITRE ATT&CK, Lateral Movement, TTP