1.What is the CIA triad?
Confidentiality, Integrity, Availability. Add a one-line example each: encryption, hashing, redundancy. Then say which one a specific business would prioritise — for a bank, integrity; for an e-commerce site during a sale, availability.
2.What is the difference between IDS and IPS?
IDS detects and alerts out of band; IPS is inline and blocks. Follow with the trade-off: a false positive in an IPS becomes downtime, so organisations often run new rules in detect mode first.
3.What is a firewall?
A control point that permits or denies traffic based on rules. Mention stateful inspection — it tracks connection state rather than judging each packet alone — and that modern firewalls also match on application and user identity.
4.Explain SQL injection to a non-technical manager.
"The application asks the database a question and pastes the user's text into it. If the text is crafted, it changes the question — so someone types into a login box and the database answers with the whole customer table." Then say the fix is parameterised queries. This question tests communication as much as knowledge.
5.What is phishing and how do you spot it?
Fraudulent messages that harvest credentials or deliver malware. Signals: mismatched sender domain, urgency and threat, link text that doesn't match the destination, unexpected attachments, and requests that bypass normal process. Say you'd verify through a known channel rather than replying.
6.What is malware, and what types do you know?
Software built to harm or gain unauthorised access — viruses, worms, trojans, ransomware, spyware, rootkits, and loaders. Add how they differ in propagation: a worm spreads by itself, a trojan needs the user to run it.
7.What is a DDoS attack?
Many sources flood a service so real users can't reach it. Volumetric attacks saturate bandwidth, protocol attacks exhaust connection state, application-layer attacks hit expensive endpoints with few requests. Mitigation is upstream scrubbing, rate limiting and caching.
8.What is patch management and why does it get neglected?
Tracking, testing and deploying updates across the estate. It gets neglected because patching risks breaking production and requires downtime windows, so organisations need a risk-based order — internet-facing and actively exploited first.
9.Basic Linux commands you'd use in an investigation?
grep and awk to filter logs, last and lastb for logins, ps and top for processes, netstat or ss for connections, find with -mtime for recently changed files, and journalctl or /var/log/auth.log for authentication history. Naming what you'd look for beats listing commands.