3.2 System Hacking Methodology Overview
Key Takeaways
- System hacking is a goal chain: gaining access, then privilege escalation, then maintaining access, then clearing logs and covering tracks
- This chain sits inside the broader five-phase ethical hacking methodology: reconnaissance, scanning, gaining access, maintaining access, covering tracks
- Each phase has a defensive mirror: preventive controls, least privilege, integrity monitoring, and tamper-evident logging
- The same chain underpins frameworks like the Cyber Kill Chain and MITRE ATT&CK, which CEH maps to phase intent
- Ethical hackers operate only inside a written, authorized scope and a signed rules-of-engagement agreement
The Big Picture
After reconnaissance and scanning identify weaknesses, system hacking is where an attacker turns a vulnerability into control of a host. The CEH frames this as a predictable goal chain, and the exam rewards candidates who can recite the order and the purpose of each stage:
- Gaining Access — exploit a weakness (credentials, misconfiguration, or a software flaw) to get an initial foothold on the system.
- Privilege Escalation — move from a low-privilege foothold to administrative or root control.
- Maintaining Access — install persistence (backdoors, rogue accounts, scheduled tasks) so the foothold survives reboots and password changes.
- Clearing Logs / Covering Tracks — remove or tamper with evidence to delay detection and forensic reconstruction.
Memory hook: Get in, get higher, stay in, stay hidden. Each stage in chapter modules 3.3 through 3.6 expands one link of this chain.
Where It Fits in the Five-Phase Methodology
The CEH's overall ethical hacking methodology has five phases. System hacking is phases three through five executed at the host level:
| Phase | Goal | Defensive Mirror |
|---|---|---|
| 1. Reconnaissance | Gather information passively/actively | Reduce attack surface, OSINT hygiene |
| 2. Scanning | Find live hosts, ports, vulnerabilities | Hardening, network segmentation, IDS |
| 3. Gaining Access | Exploit a weakness for a foothold | Patching, strong auth, input validation |
| 4. Maintaining Access | Persist on the host | Endpoint detection, integrity monitoring |
| 5. Covering Tracks | Hide activity, erase evidence | Tamper-evident logging, SIEM, alerting |
Note that some EC-Council materials present scanning and enumeration together; the canonical five-phase model collapses enumeration into the scanning/gaining-access boundary. Either way, the order of intent is what the exam tests. CEH v13 layers AI assistance into every phase, but the phase order itself is unchanged.
The Same Chain in Other Frameworks
The CEH cross-references two industry models that describe the same intrusion arc, and the exam may ask you to map a phase onto them:
- Lockheed Martin Cyber Kill Chain — seven stages: reconnaissance, weaponization, delivery, exploitation, installation, command and control (C2), and actions on objectives. Exploitation and installation line up with gaining access and maintaining access; actions on objectives is where data theft or covering tracks happens. Breaking any single link disrupts the attack.
- MITRE ATT&CK — a knowledge base of adversary tactics (the why: Initial Access, Privilege Escalation, Persistence, Defense Evasion, Credential Access, Lateral Movement, Exfiltration) and the concrete techniques under each. ATT&CK's tactics read like the CEH chain expanded: Initial Access = gaining access, Privilege Escalation, Persistence = maintaining access, Defense Evasion = covering tracks.
You are not memorizing every ATT&CK technique for CEH, but you should recognize that Persistence and Defense Evasion are the defender's names for the attacker's maintain-access and cover-tracks phases.
The Phases Are Iterative, Not Linear
Real intrusions loop. After covering tracks on one host, an attacker often pivots — using the compromised system as a launch point to re-scan an internal segment and repeat the chain against the next target. This is why lateral movement and defense in depth are recurring exam themes: a single weak host can become a beachhead for the whole network, so internal segmentation and least privilege limit blast radius even after initial compromise. The defensive lesson is that stopping the chain at any link — failed initial access, blocked escalation, detected persistence, or preserved logs — defeats the overall objective.
The Legal Boundary
Nothing in this chapter is permission to attack systems. An ethical hacker performs the system hacking chain only:
- Inside a written authorization (a signed scope or get-out-of-jail letter) that names the in-scope assets and time window.
- Under a rules-of-engagement (RoE) agreement that defines allowed techniques, escalation contacts, testing hours, and stop conditions.
- With a duty to handle sensitive data responsibly — for example, if a tester encounters regulated data such as patient records on a compromised host, the correct action is to stop, document, and notify the client per the agreed procedure, not to exfiltrate or browse it.
The CEH treats authorization and scope as testable knowledge, not legal trivia. Acting outside scope converts an ethical hacker into a criminal regardless of intent. The exam also expects you to know that a tester must avoid unnecessary disruption to production systems, protect any data collected, and deliver an actionable report — the value of the engagement is the findings and remediation guidance, not the compromise itself.
The Phase-to-Defense Summary
- Gaining access is countered by patching, strong/multi-factor authentication, and input validation.
- Privilege escalation is countered by least privilege, hardening, and prompt OS patching.
- Maintaining access is countered by endpoint detection and file integrity monitoring.
- Covering tracks is countered by centralized, tamper-evident logging and SIEM alerting.
Keep this map in mind: nearly every CEH system-hacking question is really asking you to pair an attacker action with the defensive control that stops or detects it.
Common Exam Traps
The methodology questions reward precise ordering and intent, and a few traps recur:
- Confusing escalation with access. Gaining access establishes any foothold; privilege escalation raises that foothold to admin or root. They are separate links — do not collapse them.
- Putting covering tracks too early. Clearing logs is the last phase; it usually requires the administrative rights obtained during escalation, so it cannot precede it in a realistic chain.
- Treating the phases as strictly one-pass. After covering tracks, an attacker pivots and re-enters the loop against a new internal target, which is why lateral movement is a recurring theme.
- Forgetting the authorization boundary. Any question implying action outside the signed scope is testing whether you know that exceeding scope makes the activity unlawful regardless of intent.
A reliable way to answer methodology questions is to ask what is the attacker trying to accomplish right now? — get in, get higher, stay in, or stay hidden — and then map that intent to the matching phase and the defensive control that counters it. The CEH cares far more about this intent-and-defense pairing than about any single tool name, so anchor your reasoning to the goal chain rather than memorizing isolated commands.
Within the system hacking goal chain, what is the immediate objective of privilege escalation?
In the MITRE ATT&CK framework, which tactic corresponds most closely to the CEH 'maintaining access' phase?
During an authorized engagement a tester finds sensitive patient health records on a compromised server. What is the most appropriate immediate action?