All Practice Exams

100+ Free CCRTS Practice Questions

Prepare for the CREST Certified Red Team Specialist (CCRTS) exam with instant access — no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free

Loading practice questions...

Same family resources

Explore More CREST Penetration Testing Certifications

Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.

2026 Statistics

Key Facts: CCRTS Exam

120/180

Assault Course Pass Mark

CREST CCRTS Syllabus v2.1

60/120

Tradecraft Section Pass Mark

CREST CCRTS Syllabus v2.1

3 hours

Practical Exam Duration

CREST

8 domains

Syllabus Knowledge Areas

CREST CCRTS Syllabus v2.1

Auto-scored

Tradecraft Scoring Method

CREST CCRTS Syllabus v2.1

Expert

Certification Level

CREST

The CREST CCRTS is an expert-level hands-on red team certification delivered via Pearson VUE. The practical exam includes a Red Team Assault Course (minimum 120/180 marks) and an auto-scored Tradecraft & Operational Security component (minimum 60/120 marks based on detection results). The syllabus spans eight domains: soft skills, core technical skills, reconnaissance, implants, initial access, lateral movement and privilege escalation, evasion, and egress/C2. This practice exam tests theoretical knowledge; passing the real exam requires hands-on red team expertise in enterprise exploitation and OPSEC tradecraft.

Sample CCRTS Practice Questions

Try these sample questions to test your CCRTS exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1During a red team engagement, which MITRE ATT&CK tactic describes the adversary's goal of maintaining a foothold after initial compromise?
A.Initial Access
B.Persistence
C.Defense Evasion
D.Collection
Explanation: Persistence (TA0003) encompasses techniques adversaries use to keep access to systems across restarts, changed credentials, and other interruptions that could cut off their access. Examples include scheduled tasks, registry run keys, and startup folder entries.
2A red team operator needs to enumerate Active Directory users without triggering LDAP query anomaly alerts. Which approach is most operationally secure?
A.Run ldapsearch with anonymous bind from an external IP
B.Use BloodHound's SharpHound collector with stealth options and randomised delay intervals
C.Execute net user /domain from a newly compromised workstation without delay
D.Perform a zone transfer against the domain's DNS server
Explanation: BloodHound's SharpHound with stealth collection and randomised delays reduces query rate and mimics normal user behaviour, minimising EDR and SIEM signature triggers. Operational security requires throttling enumeration traffic to avoid volume-based detection.
3Which Kerberos attack abuses accounts that have 'Do not require Kerberos preauthentication' set and does NOT require any domain credentials to execute?
A.Kerberoasting
B.AS-REP Roasting
C.Pass-the-Ticket
D.Silver Ticket
Explanation: AS-REP Roasting targets accounts with Kerberos pre-authentication disabled. An attacker can request an AS-REP for such accounts without supplying credentials, then offline-crack the encrypted portion of the response. No domain authentication is needed to perform this attack.
4An operator wants to bypass Windows Defender AMSI (Antimalware Scan Interface) before loading a PowerShell-based implant. Which technique directly patches the AmsiScanBuffer function in memory?
A.Encoding the payload with base64 and piping it through iex
B.Disabling PowerShell Constrained Language Mode via registry
C.Patching the AmsiScanBuffer return value to AMSI_RESULT_CLEAN in the process memory
D.Setting the AMSI_DISABLE environment variable before launching PowerShell
Explanation: Patching AmsiScanBuffer in memory (changing the first few bytes to force an immediate return of AMSI_RESULT_CLEAN or 0x80070057) disables AMSI scanning within the current process. This is the standard in-memory bypass technique used in red team operations against AMSI-aware PowerShell hosts.
5During initial access via phishing, a red team operator uses a lure that routes the target through an Adversary-in-the-Middle (AiTM) proxy. What primary capability does this technique provide that standard phishing does not?
A.Delivery of macro-enabled Office documents
B.Capture of session cookies to bypass MFA
C.Automated credential spraying against the target's email gateway
D.Exfiltration of files from the victim's mailbox
Explanation: AiTM phishing proxies (such as Evilginx2 or Modlishka) sit between the victim and the legitimate service, capturing session cookies after successful authentication including MFA completion. These cookies can then be replayed to gain authenticated access without knowing the password or possessing an MFA token.
6Which MITRE ATT&CK technique does 'Pass-the-Hash' fall under?
A.T1550.002 — Use Alternate Authentication Material: Pass the Hash
B.T1558.003 — Steal or Forge Kerberos Tickets: Kerberoasting
C.T1003.001 — OS Credential Dumping: LSASS Memory
D.T1078 — Valid Accounts
Explanation: Pass-the-Hash is catalogued in MITRE ATT&CK as T1550.002 under 'Use Alternate Authentication Material'. It allows an attacker to authenticate to network services using an NTLM hash without knowing the cleartext password, leveraging NTLM challenge-response authentication.
7A red team uses DNS over HTTPS (DoH) as its C2 channel. What is the primary operational security benefit of this approach?
A.DoH traffic bypasses all network firewalls unconditionally
B.DoH eliminates the need for a redirector infrastructure
C.DoH traffic blends with legitimate HTTPS traffic and is encrypted, making DNS-based C2 inspection harder for defenders
D.DoH automatically rotates C2 domain names using domain generation algorithms
Explanation: DNS over HTTPS encapsulates DNS queries within HTTPS (port 443), encrypting and blending them with normal web traffic. This makes traditional DNS monitoring and inspection by network sensors much harder, as defenders cannot inspect the DNS queries without decrypting HTTPS flows from trusted DoH resolvers.
8Which of the following best describes the purpose of a 'redirector' in red team C2 infrastructure?
A.A host that performs ARP poisoning to redirect LAN traffic to the operator
B.A DNS server that resolves C2 domain names to IP addresses for implants
C.An intermediate server that forwards beacon traffic to the true C2 server, protecting its identity from responders
D.A proxy that decrypts TLS traffic from endpoints for inspection
Explanation: A redirector (also called a relay or proxy) sits between the victim's beacon and the actual C2 server. If defenders identify and block the redirector's IP, the real C2 server remains hidden and operational. Redirectors are commonly implemented using socat, nginx, Apache mod_rewrite, or cloud-hosted services.
9During a CREST red team engagement, a candidate is required to demonstrate operational security (OPSEC). Which action would MOST undermine OPSEC during an engagement?
A.Using malleable C2 profiles to mimic legitimate software traffic patterns
B.Conducting all research and tooling preparation on a dedicated, isolated operator workstation
C.Uploading a custom implant directly from the operator's home IP to a victim host
D.Rotating C2 domain names after a suspected detection event
Explanation: Uploading an implant directly from the operator's home IP exposes a personal or persistent IP address in the victim's network logs and potentially threat intelligence feeds, directly compromising operator identity and the engagement's cover. All outbound connections should traverse dedicated redirectors or VPN egress points.
10Kerberoasting (T1558.003) is effective because of which fundamental design decision in Kerberos?
A.Service tickets are signed with the KDC's private key, which attackers can extract from a domain controller
B.Service tickets contain cleartext passwords embedded in the ticket body
C.Service tickets are encrypted with the service account's NTLM hash, allowing offline cracking without interacting with the account again
D.The KDC does not validate whether the requesting user has permission to access the target service
Explanation: In Kerberos, TGS (service) tickets are encrypted with the RC4 or AES key derived from the service account's password. Any authenticated domain user can request a TGS for any SPN. Attackers extract this encrypted blob and perform offline dictionary attacks against it, never needing to interact with the service account directly again.

About the CCRTS Exam

The CREST Certified Red Team Specialist (CCRTS) is an expert-level practical certification assessing the ability to conduct threat intelligence-led adversary simulation engagements. Candidates demonstrate red team tradecraft, OPSEC discipline, and advanced enterprise exploitation in a 3-hour assault course. This practice bank covers the full CCRTS body of knowledge: MITRE ATT&CK TTPs, Kerberos attacks, Active Directory exploitation, C2 infrastructure, evasion, and CBEST/TIBER-EU framework knowledge.

Assessment

Performance-based assessment

Time Limit

3 hours (practical) + 3 hours (written, if taken)

Passing Score

120/180 Assault Course + 60/120 Tradecraft

Exam Fee

Contact Pearson VUE or CREST for pricing (CREST (Pearson VUE delivery))

CCRTS Exam Content Outline

25%

Lateral Movement & Privilege Escalation

Kerberoasting, AS-REP Roasting, Pass-the-Hash, Golden/Silver Ticket, DCSync, ADCS ESC1, Unconstrained/Constrained Delegation, BloodHound, NTLM relay, PrintNightmare, ZeroLogon

20%

Evasion

AMSI bypass, ETW patching, EDR evasion, BYOVD, reflective DLL injection, BOFs, LOLBins, application control bypass, sandbox evasion, DLL hijacking

20%

Egress & Command and Control

Redirectors, malleable C2 profiles, sleep jitter, DNS/HTTPS/SMB C2, domain fronting, Microsoft Graph API C2, Cobalt Strike Beacon, Sliver, traffic obfuscation, data exfiltration

15%

Adversary TTPs & MITRE ATT&CK

ATT&CK tactic and technique mapping, Cyber Kill Chain, adversary simulation, ATT&CK Navigator, threat intelligence-led engagement planning, supply chain attacks

10%

Initial Access & Reconnaissance

Passive recon (CT logs, theHarvester, OSINT), phishing, AiTM attacks, LLMNR/NBT-NS poisoning, Responder, social engineering, cloud recon (AzureHound, ROADtools)

10%

Implants & Persistence

Process injection (VirtualAllocEx, section mapping, reflective loading), Windows and Linux persistence, token impersonation, Potato attacks, COM hijacking, registry run keys

10%

Soft Skills & Assessment Management

Computer Misuse Act 1990, CBEST/TIBER-EU/STAR-FS frameworks, rules of engagement, deconfliction procedures, crown jewel identification, purple teaming, red team reporting (MTTD/MTTR)

How to Pass the CCRTS Exam

What You Need to Know

  • Passing score: 120/180 Assault Course + 60/120 Tradecraft
  • Assessment: Performance-based assessment
  • Time limit: 3 hours (practical) + 3 hours (written, if taken)
  • Exam fee: Contact Pearson VUE or CREST for pricing

Keys to Passing

  • Work through all 100 available questions
  • Review every answer and explanation
  • Track weak areas and revisit them
  • Use our AI tutor for tough concepts

CCRTS Study Tips from Top Performers

1Master the MITRE ATT&CK framework thoroughly — know tactics, techniques, sub-techniques, and their data sources
2Build hands-on Active Directory attack labs covering Kerberoasting, AS-REP, Golden/Silver Ticket, DCSync, and ADCS attacks
3Practice C2 infrastructure setup: configure Cobalt Strike or Sliver with malleable profiles, redirectors, and sleep jitter
4Study AMSI, ETW, and EDR evasion techniques; understand why each bypass works at the API/memory level
5Learn the CBEST and TIBER-EU framework structure, roles (TIP vs red team), and the threat intelligence-led engagement lifecycle
6Practice LOLBin and application control bypass techniques — certutil, mshta, rundll32, regsvr32
7Build BloodHound attack path analysis skills in AD labs; understand every edge type and how to abuse it
8Practise OPSEC discipline: use redirectors, limit footprint, rotate infrastructure, and maintain detailed operator logs
9Study the Computer Misuse Act 1990 and understand what constitutes unauthorised access and the boundaries of engagement authorisation

Frequently Asked Questions

What is the CREST CCRTS exam format?

The CCRTS practical exam comprises two components: the Red Team Assault Course (maximum 180 marks, pass mark 120) and the Tactics, Tradecraft & Operational Security section (maximum 120 marks, pass mark 60), which is auto-scored based on what defenders detect during the assault course. There is also an optional written exam (3 hours: 60-mark MCQ + 120-mark written scenario) with separate pass marks. Both practical sections must be passed. The exam is delivered via Pearson VUE.

What technical areas does the CCRTS syllabus cover?

The CCRTS syllabus v2.1 covers eight domains: Soft Skills & Assessment Management; Core Technical Skills (networking, cryptography, scripting); Reconnaissance (OSINT, DNS, cloud); Implants (evasion, persistence, physical implants); Initial Access (phishing, AiTM, supply chain); Lateral Movement & Privilege Escalation (AD attacks, Kerberos, credential dumping); Evasion (AV/EDR bypass, AMSI, ETW, LOLBins); and Egress/C2 (redirectors, tunnelling, traffic obfuscation).

What is the relationship between CCRTS and CBEST/TIBER-EU?

The CCRTS is designed to certify specialists capable of conducting threat intelligence-led simulated attack engagements such as CBEST (UK financial sector), TIBER-EU (European financial sector), and STAR-FS (SWIFT member testing). These frameworks require separate, independent Threat Intelligence Providers and use a targeted attack lifecycle model (Cyber Kill Chain + MITRE ATT&CK). CCRTS-certified individuals demonstrate the technical capability to lead the red team component of such engagements.

How does the tradecraft scoring work in the CCRTS?

The Tactics, Tradecraft & Operational Security component of the CCRTS practical is auto-scored based on detection results — specifically what defensive tools and monitoring systems detect during the candidate's assault course attempt. A candidate who achieves objectives with a minimal detectable footprint scores higher on tradecraft. This is distinct from the assault course score, which measures whether objectives were completed.

What prerequisites are needed for the CCRTS?

CREST does not mandate formal prerequisites for CCRTS, but the certification is positioned as expert-level. Candidates are expected to have strong practical experience in advanced penetration testing or red teaming, be comfortable with Active Directory attacks, C2 operations, evasion techniques, and OPSEC discipline. Passing the CPSA and potentially CCT Infrastructure are recommended stepping stones.

Is this practice test like the real CCRTS exam?

No — the real CCRTS practical exam requires you to actually compromise live enterprise environments under time pressure while demonstrating OPSEC discipline, with your tradecraft auto-scored by detection results. This practice bank is a theoretical multiple-choice resource testing your knowledge of the techniques, tools, frameworks, and concepts in the CCRTS syllabus. Use it to solidify knowledge, then build hands-on skills in lab environments before attempting the real exam.