TestPrep — Worldwide Online Tutoring
Blog
AP

How does AP Cybersecurity score the incident-response FRQ

7 August 20269 min read

AP Cybersecurity is one of the newest courses in the College Board catalogue, and students preparing for it often confuse it with a general 'ethical hacking' module. It is not. The exam tests a small, deliberate vocabulary of threat identification, mitigation, and justification, and the free-response question is where the score is actually decided. If you can write a clean incident-response answer in under 15 minutes, you will almost certainly clear the 4/5 boundary; if you cannot, the multiple-choice section will not save you, no matter how well you memorise port numbers.

What the AP Cybersecurity FRQ actually asks you to do

The free-response section on AP Cybersecurity is built around one realistic scenario per prompt, usually a small-business network or a single host that has just produced an alert. You are given a short log extract, a packet capture summary, or a description of user behaviour, and the question asks you to (a) name what is happening, (b) say what you would do about it, and (c) explain why your action is appropriate. Three moves, three score rows. The wording varies, but the rubric structure is stable year over year, which is unusual for a young AP course and useful for preparation.

Most candidates over-write the first row and under-write the third. They spend 200 words describing the attack and 30 words on the justification, when the rubric actually weights the justification more heavily than the identification. Treat the FRQ like a three-line proof: claim, method, reason.

Reading the incident-response stem: where marks are quietly awarded

Before you write anything, read the last sentence of the stem twice. The verb in that sentence is the verb the rubric is grading. If the stem says 'identify the most likely threat', the row is one point and you get it by naming the right threat class, not by explaining it. If the stem says 'justify your response', the row is one point and you get it by linking your action to a specific control or principle, not by restating the action. Reading the verb correctly is roughly 30% of the available marks before you have written a single word.

A useful habit is to underline the verb and the object. 'Recommend a mitigation', 'justify a mitigation', and 'describe a mitigation' are three different rows with three different word budgets. The first wants a noun phrase (a specific control). The second wants a noun phrase plus a reason. The third wants a short paragraph describing how the control works. Misreading the verb is the single most common reason capable students score 3 instead of 5.

The triage row: why 'identify the threat' is the most-dropped point

Identification looks easy, so candidates rush it. The prompt shows a SQL injection attempt against a login form, and the candidate writes 'SQL injection'. That earns the row — but only if the candidate has spelled out the indicator they used. A strong answer reads: 'SQL injection, indicated by the presence of UNION SELECT in the username field of the HTTP POST to /login.' The indicator is what proves you read the log, not the label. Without it, the reader cannot tell whether you recognised the pattern or guessed the buzzword.

For most candidates, the safest format is a two-part sentence: threat class, comma, observed indicator. The indicator should be drawn from something concrete in the prompt — a log line, a port number, a filename, a registry key. Generic answers like 'malicious activity was detected' score zero, even when they are technically true.

Mitigation moves the rubric rewards, and the ones it silently ignores

The mitigation row rewards specificity. 'Patch the system' is too vague. 'Apply vendor patch MS-2026-014 to the affected IIS server within 24 hours and verify with a follow-up Nessus scan' is at the right altitude. The rubric wants a control that is (a) named, (b) scoped to the asset in the prompt, and (c) testable. If the examiner cannot picture the sysadmin doing the action, the row is lost.

The following controls appear repeatedly in the official sample prompts and are worth memorising in their precise form:

  • Network segmentation: placing the affected host in an isolated VLAN until containment is verified.
  • Least-privilege account review: revoking the compromised service account and reissuing credentials under role-based access control.
  • Input validation: parameterised queries and a whitelist of allowed characters on the login form.
  • Logging and detection: forwarding the relevant log source to the SIEM with a correlation rule for the indicator you named.
  • User training: only when the threat is social engineering; do not paste this into a SQL-injection answer.

Notice the last item. The rubric penalises controls that do not match the threat. Recommending 'user training' for a buffer overflow is a common reflex; it signals to the reader that you are pattern-matching keywords, not analysing the scenario. Match the control to the threat class first, then add the control name.

Justification rows: how to phrase 'because' in two sentences

The justification row is the one students lose most often, and the loss is almost always grammatical. A scoring justification has the shape control, because, principle. 'I would segment the network, because the affected host has not yet been confirmed clean, and east-west traffic between VLANs is currently unrestricted.' That is a full-credit sentence. The 'because' clause does the work; the principle (least-privilege, defence in depth, fail-safe defaults) is named explicitly, not implied.

A weak justification tries to argue by accumulation: 'I would segment the network, install a patch, run an antivirus scan, and monitor the logs.' That is a list, not a justification. The reader cannot tell which of the four actions is the one you are justifying, so the row is scored as partial at best. Pick one control, defend it, and stop.

Three principles cover roughly 80% of AP Cybersecurity justification rows: the CIA triad (confidentiality, integrity, availability), defence in depth, and least privilege. If you can name one of these in the same breath as your control, you will clear the row in most prompts. The remaining 20% of prompts ask for a justification grounded in a specific control family (cryptographic, identity, network) — read the verb again before you choose.

Common pitfalls and how to avoid them on the FRQ

The first pitfall is writing a forensics report instead of an incident-response answer. The prompt gives you a log; it does not ask you to reconstruct the entire attack chain. Two sentences on the chain is plenty, then move to the three rows. Candidates who spend 10 minutes drawing a kill-chain diagram on scrap paper usually run out of time on the justification.

The second pitfall is hedging. 'It could be a SQL injection or possibly an XSS attempt' is not a scored answer; the row wants a single threat class. If you genuinely cannot tell, pick the one supported by the strongest indicator in the log and say so: 'Most likely SQL injection, because the payload matches the union-based signature.' Hedge in the reasoning, not in the identification.

The third pitfall is recommending a control that contradicts your threat class. 'Disable the firewall to stop the attack' is a real answer I have seen in draft form. Read your own mitigation back once before you move on. If the control would make the situation worse, the row is lost and the justification row is lost with it.

MCQ pattern recognition: 4 attack-vector families the exam recycles

Although this article is anchored on the FRQ, the multiple-choice section feeds the same vocabulary. Four families of attack appear in nearly every released practice set, and recognising them by their indicator saves the 90 seconds per item that pacing requires.

Attack familyTypical indicator in the promptFirst-line mitigation
Injection (SQL, command, LDAP)User input echoed into a query; ' OR 1=1 --, ; rm -rfParameterised queries, input validation, least-privilege DB account
Credential-based access (brute force, credential stuffing, token theft)Many failed logins, logins from new geographies, OAuth token reuseMFA, rate limiting, token rotation, account review
Malware and persistence (trojan, rootkit, scheduled task abuse)Unknown process, new scheduled task, outbound C2 beaconEDR isolation, scheduled-task audit, egress filtering
Social engineering (phishing, pretexting, vishing)User reports an unusual email or call; MFA fatigue promptUser training, MFA number matching, reporting workflow

If you can map a prompt to one of these four families in under 20 seconds, the multiple-choice section becomes a triage exercise rather than a knowledge test. The official Course and Exam Description lists more families, but these four account for the bulk of the released items and are the safest place to spend your pattern-recognition time in the first three weeks of preparation.

A 4-week AP Cybersecurity FRQ rehearsal plan

Week 1 should be silent reading. Take three released prompts and the official scoring notes, and read the scoring notes before you read the student samples. Train your eye to find the row first, then the answer. Week 2 is timed drafting: one 15-minute FRQ per day, hand-written, with the verb underlined and the indicator named. Week 3 is peer-marking: trade drafts with a study partner and grade against the rubric, not against your gut. Week 4 is full-section rehearsal under exam conditions, with the Create Performance Task artefacts (if your teacher is using them) reviewed against the artefact rows in the CED.

By the end of week 4, you should be able to write a three-row answer in 12 minutes with one sentence per row. That pace leaves 18 minutes for the second FRQ and a buffer for reading time. Most candidates who score 5 on this exam are not deeper readers than the 3-scoring candidates; they are simply faster at recognising which row they are on.

AP Cybersecurity is a young course, and the official practice material is still being expanded, which is why rehearsal against the scoring notes matters more than breadth-reading. Master the three rows, recognise the four families, and the free-response section becomes a routine you can run under pressure. That is the gap between a 3 and a 5.

Next steps

The next layer of work is the justification row itself: how to bind a control to a principle in one clean sentence, and how to avoid the accumulation-list trap that costs candidates the partial credit. AP Courses' one-to-one AP Cybersecurity programme drills this row against released prompts and turns the three-line proof into a reflex you can run on exam day.

Frequently asked questions

How is the AP Cybersecurity FRQ scored?
Each FRQ is scored on three rows: identification of the threat with an indicator, recommendation of a specific mitigation scoped to the asset, and a justification that names a security principle. Misreading the verb in the prompt is the most common reason candidates lose the justification row.
How long is the AP Cybersecurity exam?
The exam follows the standard College Board AP timing model, with a multiple-choice section and a free-response section of two prompts. The CED specifies the section length, and you should verify the current minutes on the official AP Central page before sitting a practice test.
Do I need to memorise port numbers for AP Cybersecurity?
Port numbers appear in a small number of MCQ stems, but the exam rewards recognition of the indicator family more than recall of a specific number. If you cannot recall 443, you can still identify an encrypted web session from the protocol context.
What is the difference between the CIA triad and the Parkerian hexad on the exam?
AP Cybersecurity scoring notes privilege the CIA triad (confidentiality, integrity, availability) as the default justification framework. The Parkerian hexad is mentioned in the course framework as an extension; for FRQ justifications, name the CIA element you are defending and the row is secure.
Can I earn a 5 without strong programming skills?
Yes. The FRQ asks you to read logs and packet captures, not to write code. Comfort with command-line output and configuration snippets is enough. The Create Performance Task, where it is used, is assessed on artefact and written response, not on code complexity.

Questions and Comments

No comments here yet. Be the first to write one.

Share your experience

Leave a question or a comment about this article.

Comments are reviewed before they appear. No email address required.

WhatsAppGet info