🛡 Paper 2 · 3.6 Cyber Security
3.6.3a Cyber Security Measures
AQA 8525 · GCSE Computer Science · ~12 min read
Notes
──
Video
──
Worksheet
──
Quiz

Defence in Depth

No single security measure is sufficient. Defence in depth (layered security) means using multiple overlapping security controls so that if one fails, others are still in place. Think of it like a castle: a moat, then a wall, then guards, then locked doors inside.

Technical Measures

Network defence

🛡 Firewall

Hardware or software that monitors and filters network traffic. Inspects packets by source/destination IP, port, protocol. Packet filtering: checks individual packets. Stateful inspection: tracks connection state. Proxy firewall: intermediary between internal/external. DMZ (Demilitarised Zone): a buffer network between internal and external networks for public-facing servers.

Data protection

🔒 Encryption

Encryption scrambles data so it cannot be read without the key. At rest: protects stored data (full disk encryption, encrypted databases). In transit: protects data moving across networks (HTTPS/TLS). Symmetric encryption: same key to encrypt and decrypt (fast, AES). Asymmetric encryption: public key encrypts, private key decrypts (RSA, used in TLS handshake).

Access control

🔐 Authentication

Username + password: most basic. Two-factor authentication (2FA): password + something you have (phone/token) — dramatically improves security. Biometrics: fingerprint, face recognition — something you are. Authentication should be mandatory for all system access.

Access control

👤 Authorisation & Least Privilege

After authentication, authorisation controls WHAT a user can access. Principle of least privilege: users only have permissions they need for their role. Access control lists (ACLs): define permissions per user/group per resource. Separate admin accounts from standard user accounts.

Malware defence

🦠 Anti-malware Software

Detects and removes malware using: Signature detection (database of known malware) and heuristic analysis (detects suspicious behaviour patterns). Must be kept up to date — new malware emerges daily. Real-time scanning monitors files as they are accessed.

Patch management

🔄 Software Updates

Software vendors release security patches to close known vulnerabilities. Unpatched systems are a major vulnerability — many major breaches exploit known, patched vulnerabilities that organisations failed to update. Enable automatic updates; prioritise critical security patches.

Encryption — How It Works

Plaintext → Encryption (AES-256 key) → Ciphertext

Original: "Transfer £5000 to account 12345678"
Key: AES-256 (256-bit secret key)
Cipher: "7f3bX9#Kp!mQ2vLzRt8jN1cWs0YeA4dH..."

Even if intercepted, the ciphertext reveals nothing without the key.

TLS/HTTPS process: (1) Client connects; (2) Server sends public key certificate; (3) Client verifies certificate; (4) Symmetric session key exchanged securely using asymmetric encryption; (5) All data encrypted with session key.

Administrative Measures

MeasureDescription
Security policiesClear written rules: acceptable use, password requirements, BYOD policy, clean desk policy
Staff trainingRegular awareness training — phishing simulations, recognising social engineering
BackupsRegular backups (3-2-1 rule: 3 copies, 2 media types, 1 offsite) — recover from ransomware without paying
Incident response planPre-defined procedures for when a breach occurs — contain, investigate, recover, notify
Audit logsRecords of all access and actions — detect suspicious activity, support forensic investigation

Physical Security

Physical security prevents unauthorised physical access to hardware. A person with physical access can bypass many software controls.

MeasureWhat it prevents
Locked server rooms with key fob accessTailgating, hardware theft, booting from external media
CCTV and security guardsUnauthorised entry, physical tampering
Cable locks (Kensington locks) on devicesDevice theft
Screen privacy filtersShoulder surfing
Visitor sign-in and escort proceduresTailgating, pretexting by visitors
Exam tip: When asked to suggest security measures, give specific measures and explain how each one protects against a specific threat. "Use better security" earns zero marks. Classify measures as technical (firewall, encryption, 2FA), administrative (policies, training, backups), or physical (locks, CCTV). Mention defence in depth — layered security — as a principle.
⚠️ Common Mistakes
  • Saying "encrypt the firewall" — encryption and firewalls are separate, independent measures.
  • Thinking 2FA is just "having a password and username" — 2FA requires two different categories: something you know AND something you have (or are).
  • Saying antivirus "prevents all malware" — antivirus uses known signatures; new zero-day malware may not be detected. It is one layer, not complete protection.
Video coming soon

Key points

  • Defence in depth: multiple overlapping security layers — if one fails, others remain
  • Firewall: monitors/filters network traffic by IP/port/protocol; hardware or software
  • Encryption: at rest (stored data) and in transit (HTTPS/TLS); symmetric (AES) vs asymmetric (RSA)
  • Authentication: password + 2FA + biometrics; authorisation = least privilege
  • Anti-malware: signature + heuristic detection; must be updated regularly
  • Physical: locked server rooms, CCTV, cable locks, visitor procedures
Click slide or press arrow keys to navigate
✍️

Worksheet — 3.6.3a Cyber Security Measures

8 questions · 22 marks

Q1What is meant by 'defence in depth'? Why is it better than relying on a single security measure?[2]
✅ Mark scheme
Mark scheme
Defence in depth means using multiple, overlapping security measures (layers) rather than relying on a single control [1]; if one layer fails (e.g. the firewall is bypassed), other layers (encryption, access control, antivirus) are still in place to protect the system — no single point of failure [1].
Q2Explain the difference between encryption at rest and encryption in transit. Give an example of each.[4]
✅ Mark scheme
Mark scheme
Encryption at rest protects stored data [1]; example: full disk encryption on a laptop, encrypted database [1]; encryption in transit protects data as it travels across a network [1]; example: HTTPS/TLS encrypting web traffic between browser and server [1].
Q3What is the principle of least privilege? How does it reduce security risk?[2]
✅ Mark scheme
Mark scheme
Least privilege means users are only granted access to the systems and data they specifically need for their job role [1]; this reduces the damage if an account is compromised — an attacker with low-privilege credentials cannot access sensitive systems beyond that user's scope [1].
Q4How does anti-malware software detect threats? Why must it be kept up to date?[3]
✅ Mark scheme
Mark scheme
Anti-malware uses signature detection — comparing files to a database of known malware fingerprints [1]; and heuristic analysis — monitoring behaviour for suspicious patterns (e.g. a process attempting to encrypt many files rapidly) [1]; it must be kept up to date because new malware is created daily — an outdated database cannot detect new threats and leaves the system vulnerable [1].
Q5Explain the difference between symmetric and asymmetric encryption.[2]
✅ Mark scheme
Mark scheme
Symmetric encryption uses the same key to encrypt and decrypt data — fast but the key must be shared securely (example: AES) [1]; asymmetric encryption uses a key pair — a public key to encrypt and a private key to decrypt; the public key can be shared openly without risk (example: RSA, used in TLS/HTTPS) [1].
Q6Why is it important to keep software and operating systems patched and updated?[2]
✅ Mark scheme
Mark scheme
Software patches close known security vulnerabilities that have been discovered in the software [1]; unpatched systems leave known vulnerabilities open for attackers to exploit — many major data breaches exploit vulnerabilities for which patches were already available but had not been applied [1].
Q7State three physical security measures an organisation could implement and explain how each prevents a specific threat.[3]
✅ Mark scheme
Mark scheme
Any three: locked server rooms with key fob access — prevents tailgating and unauthorised physical access to critical hardware [1]; CCTV surveillance — deters attackers and provides evidence for forensic investigation [1]; cable locks on devices — prevents laptop/device theft [1]; screen privacy filters — prevents shoulder surfing in open-plan offices [1]; visitor sign-in and escort procedures — prevents pretexting by visitors claiming false identities [1].
Q8A school stores student data on its servers. Using the concept of defence in depth, describe four security measures the school should implement, classifying each as technical, administrative, or physical.[4]
✅ Mark scheme
Mark scheme
Any four, one mark each with correct classification: Technical: firewall to filter unauthorised network access; encryption (TLS) for data in transit; 2FA for staff logins; anti-malware software [technical, 1 each]; Administrative: security awareness training for staff; acceptable use policy; regular encrypted backups; audit logs [administrative, 1 each]; Physical: locked server room with key fob access; CCTV; cable locks on devices [physical, 1 each].
Check your answers above.
Topic Quiz
Q 1 of 10
You scored
out of 10
Card 1 of 8
Click to flip
🎉
All done!
TermDefinition
🎯

Mini Test — 3.6.3a Security Measures

Timed exam conditions.

  • 8 questions · 10 minutes
  • 5 MCQ + 3 short answer
← 3.6.2 Social Engineering
49 of 57 · AQA 8525
3.6.3b Penetration Testing →