September 4, 2026
Cybersecurity Interview Questions โ Part 2: 15 More Medium-Level Questions & Answers
Cybersecurity Interview Questions โ Part 2: 15 More Medium-Level Questions & Answers

By Karanam Shrivasta
17 min read
- 1 A continuation of the series โ covering SIEM, SOC operations, IOC vs IOA, EDR, threat intelligence, vulnerability management, and network defense fundamentals.
- 2 Table of Contents
- 3 Cybersecurity Interview Questions โ Part 2
- 4 Question 1: What is a SIEM, and what problem does it solve?
- 5 Question 2: How is a SOC structured, and what do the analyst tiers do?
A continuation of the series โ covering SIEM, SOC operations, IOC vs IOA, EDR, threat intelligence, vulnerability management, and network defense fundamentals.
Part 1 of this series covered the foundations: the CIA Triad, authentication versus authorization, encryption versus hashing, firewalls, IDS/IPS, and the incident response lifecycle.
Part 2 moves into the layer above those fundamentals โ the concepts that come up once an interviewer stops testing definitions and starts testing whether you understand how a security team actually operates. These are the questions that show up in SOC analyst screenings, security analyst interviews, and intermediate information security rounds.
I'm Karanam Shrivasta, a 15-year-old cybersecurity learner. I write these as study notes for my own preparation, and I publish them because clear, accurate explanations are surprisingly hard to find in one place.
Every question below follows the same structure: a direct answer, a plain-language explanation, a practical example, and one interview tip.
Read Part 1: [INSERT PART 1 LINK]
Table of Contents
- What is a SIEM, and what problem does it solve?
- How is a SOC structured, and what do the analyst tiers do?
- What makes a log source useful for security monitoring?
- What is the difference between an IOC and an IOA?
- How does EDR differ from traditional antivirus?
- What is threat intelligence, and what are its levels?
- What is defense in depth?
- What is network segmentation, and why does it matter?
- What is the vulnerability management lifecycle?
- Why is patch management difficult in practice?
- What is a security misconfiguration, and how is it prevented?
- What is the difference between brute force, password spraying, and credential stuffing?
- What is a man-in-the-middle attack, and how does ARP spoofing relate to it?
- What are the main categories of DDoS attacks, and how are they mitigated?
- What are the core principles of digital forensics?
Conclusion ยท Ethical & Legal Disclaimer ยท About the Author
Cybersecurity Interview Questions โ Part 2
Question 1: What is a SIEM, and what problem does it solve?
Answer: A SIEM (Security Information and Event Management) platform centrally collects, normalizes, correlates, and stores log data from across an environment, then generates alerts when activity matches detection rules or behavioral thresholds.
Explanation: Security-relevant events are scattered โ firewalls, endpoints, domain controllers, cloud services, applications, DNS servers. Individually, each log line is meaningless noise. A SIEM solves three problems at once: aggregation (one place to look), normalization (different log formats mapped to a common schema), and correlation (linking events across sources into a single narrative).
The pipeline is worth memorizing as a chain: log sources โ collection โ normalization โ correlation rules โ alerts โ SOC triage โ incident investigation.
Example: A single failed login is noise. A SIEM correlation rule that fires on 50 failed logins from one source IP across 30 different accounts, followed by one success, followed by a new process spawning on that host is a detection.
Interview Tip: Do not describe a SIEM as "a log storage tool." The differentiator in an interview answer is correlation โ explaining that a SIEM connects events that are individually harmless. Popular platforms include Splunk, Microsoft Sentinel, Elastic Security, and QRadar; naming one or two shows familiarity without overclaiming.
Question 2: How is a SOC structured, and what do the analyst tiers do?
Answer: A Security Operations Center (SOC) is the team responsible for continuous monitoring, detection, triage, and response. It is commonly structured in tiers: Tier 1 performs alert triage, Tier 2 conducts deeper investigation and incident response, and Tier 3 handles threat hunting, forensics, and detection engineering.
Explanation:
- Tier 1 (Triage): Reviews incoming alerts, validates whether they are true or false positives, gathers initial context, and escalates.
- Tier 2 (Investigation): Takes escalations, builds the timeline, determines scope and impact, drives containment.
- Tier 3 (Hunting / Engineering): Proactively searches for threats that no alert fired on, tunes and writes detection rules, performs forensic analysis.
Two metrics matter across all tiers: MTTD (Mean Time to Detect) and MTTR (Mean Time to Respond). Both are measurements of how quickly the SOC shortens an attacker's window of opportunity.
Example: An EDR alert for a suspicious PowerShell command is triaged by Tier 1. If the command downloads and executes remote content, it escalates to Tier 2, who checks whether the same behavior appears on other hosts.
Interview Tip: Many organizations now run flatter or hybrid SOC models rather than strict tiers. Saying "the tiered model is the classic structure, though many teams now blend triage and investigation" demonstrates you understand the model without treating it as universal law.
Question 3: What makes a log source useful for security monitoring?
Answer: A useful security log source produces events that are relevant to attacker behavior, complete enough to reconstruct what happened, timestamped accurately, tamper-resistant, and retained long enough to support investigation.
Explanation: Log analysis fails for predictable reasons, and interviewers probe for whether you know them:
- Time synchronization โ without NTP across all sources, you cannot build a reliable timeline.
- Log integrity โ an attacker with local admin can clear logs, which is why forwarding off-host matters.
- Retention โ many intrusions are discovered weeks or months later; 7-day retention means the evidence is already gone.
- Coverage gaps โ "no alerts from that subnet" and "that subnet is not monitored" are entirely different statements.
High-value sources typically include authentication logs, DNS query logs, process creation events, EDR telemetry, proxy/web logs, and cloud audit trails.
Example: Windows Event ID 4625 records a failed logon and Event ID 4624 records a successful one. Correlating a burst of 4625 events followed by a 4624 from the same source is a classic brute-force detection pattern.
Interview Tip: The strongest answer here is the honest one: you cannot detect, investigate, or prove what was never logged. Interviewers remember candidates who treat logging coverage as a security control rather than an IT housekeeping task.
Question 4: What is the difference between an IOC and an IOA?
Answer: An Indicator of Compromise (IOC) is forensic evidence that a breach has already occurred โ a known-bad artifact. An Indicator of Attack (IOA) is evidence of attacker behavior or intent, observed as it happens, regardless of the specific tools used.
Explanation: IOCs are reactive and artifact-based: file hashes, malicious IP addresses, domain names, registry keys, mutex names. They are precise but brittle โ an attacker changes one byte and the hash no longer matches.
IOAs are proactive and behavior-based: a document process spawning a scripting interpreter, credential dumping activity, unusual lateral movement, or persistence being established. Behavior is far more expensive for an attacker to change than an artifact.
Example: IOC: the SHA-256 hash of a specific ransomware binary. IOA: a process enumerating and encrypting large numbers of files across network shares while deleting volume shadow copies โ regardless of which binary is doing it.
Interview Tip: The closing line that lands well: "IOCs tell you what already happened. IOAs tell you what is happening." Then add that mature detection programs use both โ IOCs for fast, cheap matching and IOAs for resilient detection. Frameworks like MITRE ATT&CK are essentially catalogues of behaviors, which is why they map naturally to IOAs.
Question 5: How does EDR differ from traditional antivirus?
Answer: Traditional antivirus primarily blocks known malware using signatures and simple heuristics. EDR (Endpoint Detection and Response) continuously records endpoint telemetry โ process execution, file changes, registry activity, network connections โ enabling behavioral detection, investigation, threat hunting, and remote response actions.
Explanation: Antivirus answers one question: is this file known to be bad? EDR answers a much broader one: what has been happening on this endpoint, and does the sequence look malicious?
Because EDR records the process tree and its relationships, an analyst can reconstruct an attack chain rather than just seeing a single blocked file. EDR also supports response actions such as isolating a host from the network or terminating a process.
Related terms you should be able to place:
- NDR (Network Detection and Response) โ the same behavioral philosophy applied to network traffic.
- XDR (Extended Detection and Response) โ correlation across endpoint, network, identity, email, and cloud signals.
- MDR (Managed Detection and Response) โ the capability delivered as an outsourced service.
Example: Antivirus may not flag a legitimate, signed system binary. EDR flags that the same binary was launched by a spreadsheet application and immediately opened an outbound connection to an unfamiliar host โ the sequence is the signal, not the file.
Interview Tip: Mention the trade-off. EDR generates significantly more telemetry and therefore more alerts, so tuning and detection engineering are what make it valuable. Deploying EDR without tuning produces alert fatigue, which is a real operational risk.
Question 6: What is threat intelligence, and what are its levels?
Answer: Threat intelligence is analyzed information about adversaries โ their capabilities, infrastructure, motivations, and techniques โ that supports security decision-making. It is typically divided into strategic, operational, and tactical levels.
Explanation:
- Strategic: High-level, non-technical. Threat landscape trends, sector targeting, risk context. Audience: leadership.
- Operational: Information about specific campaigns, threat actor groups, and their objectives. Audience: SOC managers and incident responders.
- Tactical: Technical detail on TTPs (Tactics, Techniques, and Procedures) and indicators. Audience: analysts and detection engineers.
The critical distinction: data is not intelligence. A raw list of IP addresses is data. That list, enriched with context about who used it, when, against which sector, and with what confidence, is intelligence.
Example: A tactical intelligence report describing a threat group's preferred persistence techniques lets a detection engineer write a rule for that behavior โ and lets a threat hunter search historical logs for evidence it already occurred.
Interview Tip: Raise the issue of relevance and freshness. Indicator feeds decay quickly, and intelligence about a threat actor that never targets your sector generates cost without benefit. Candidates who mention that intelligence must be actionable and contextual sound far more experienced than those who just define the term.
Question 7: What is defense in depth?
Answer: Defense in depth is a security architecture principle in which multiple independent layers of controls are deployed, so that the failure or bypass of any single control does not result in full compromise.
Explanation: No control is perfect. Perimeter firewalls get misconfigured, email filters miss a phish, users click links, and patches lag behind disclosure. Layering assumes failure as a design input rather than treating any one control as authoritative.
Layers typically span: physical security, network controls (segmentation, filtering), host controls (hardening, EDR), application controls (input validation, secure design), identity controls (MFA, least privilege), data controls (encryption, DLP), and administrative controls (policy, training, monitoring).
Example: A phishing email bypasses the mail gateway. Attachment sandboxing catches nothing. The user clicks. Application allowlisting blocks execution. Even if it executed, EDR detects the behavior, network segmentation limits reach, and MFA blocks the stolen password from being reused. Each layer buys time and detection opportunity.
Interview Tip: Distinguish it from zero trust, which interviewers often ask as a follow-up. Defense in depth is about layering controls; zero trust is about eliminating implicit trust and continuously verifying every request. They are complementary, not competing.
Question 8: What is network segmentation, and why does it matter?
Answer: Network segmentation divides a network into isolated zones with controlled traffic flow between them, limiting an attacker's ability to move laterally after gaining an initial foothold.
Explanation: A flat network means one compromised workstation can reach domain controllers, backup servers, and production databases. Segmentation reduces the blast radius of any single compromise.
Common approaches:
- VLANs โ logical Layer 2 separation.
- Subnets with ACLs / internal firewalls โ enforced Layer 3 filtering between zones.
- Microsegmentation โ policy applied at the individual workload or host level, often in virtualized and cloud environments.
- DMZ โ a separate zone for internet-facing services so they cannot directly reach internal systems.
Segmentation also improves monitoring: traffic crossing a segment boundary is a natural inspection point.
Example: Placing OT/ICS systems, guest Wi-Fi, corporate workstations, and payment processing systems in separate segments means a compromised guest device cannot reach the payment environment at all. This is also why segmentation appears in compliance frameworks such as PCI DSS.
Interview Tip: Connect it to lateral movement explicitly. The sentence "segmentation does not prevent the initial compromise โ it limits what that compromise is worth to the attacker" shows you're thinking in terms of attacker economics, not just controls.
Question 9: What is the vulnerability management lifecycle?
Answer: Vulnerability management is the continuous process of identifying, evaluating, prioritizing, remediating, and verifying weaknesses across an environment. It is a cycle, not a one-time scan.
Explanation: The standard stages:
- Asset discovery โ you cannot secure inventory you don't know exists.
- Scanning / identification โ authenticated and unauthenticated scanning.
- Prioritization โ severity combined with exploitability, exposure, and asset criticality.
- Remediation โ patch, reconfigure, or apply a compensating control.
- Verification โ rescan to confirm the fix actually landed.
- Reporting and improvement โ track trends and recurring root causes.
Terms interviewers like to separate:
- Vulnerability scan: automated, broad, identifies known issues.
- Vulnerability assessment: scanning plus human analysis and context.
- Penetration test: authorized, goal-driven simulation of an attack to demonstrate real exploitability and impact.
Example: A scanner reports 4,000 findings. Filtering to those that are internet-facing, have publicly available exploit code, and sit on systems handling sensitive data may reduce the immediate work queue to a few dozen โ which is the difference between a program that functions and one that drowns.
Interview Tip: Say clearly that severity is not the same as priority. A high-severity vulnerability on an isolated, non-critical internal test box may rank below a medium-severity one on an internet-exposed production server. Prioritization frameworks that factor in known exploitation in the wild โ such as CISA's Known Exploited Vulnerabilities catalogue โ are worth naming.
Question 10: Why is patch management difficult in practice?
Answer: Patch management is the process of acquiring, testing, deploying, and verifying software updates. It is difficult because patching must be balanced against operational stability, compatibility, downtime, and incomplete asset visibility.
Explanation: Interviewers ask this because the naive answer โ "just patch everything immediately" โ signals no operational awareness. Real constraints include:
- Compatibility risk: a patch can break a business-critical application.
- Availability requirements: some systems cannot be rebooted during business hours, or at all without a change window.
- Legacy and unsupported systems: no patch exists, so compensating controls are the only option.
- Asset blind spots: unmanaged devices, shadow IT, and forgotten servers never receive updates.
- Third-party software: often lags well behind operating system patching maturity.
The usual workflow is: inventory โ test in a staging environment โ phased rollout โ verification โ rollback plan.
Example: When no patch is available for a legacy system, compensating controls take over: isolate it via segmentation, restrict access to a small set of accounts, and increase monitoring on it specifically.
Interview Tip: Mention the patch gap โ the window between public disclosure and deployment โ and note that this window is exactly when exploitation risk peaks. Also mention rollback planning; candidates rarely do, and it signals real operational thinking.
Question 11: What is a security misconfiguration, and how is it prevented?
Answer: A security misconfiguration is a weakness caused by insecure settings, defaults, or incomplete hardening rather than a flaw in the software itself. It is prevented through secure baselines, configuration management, and continuous configuration auditing.
Explanation: Common categories include default credentials left unchanged, unnecessary services or ports enabled, overly permissive access rules, verbose error messages exposing internal detail, missing security headers, and publicly exposed storage or management interfaces.
Misconfiguration is distinct from a vulnerability: the software may be fully patched and still be insecure because of how it was deployed.
Preventive controls:
- Security baselines โ documented hardened configurations (for example, CIS Benchmarks or vendor hardening guides).
- Configuration as code โ reproducible, reviewable deployments.
- Configuration drift detection โ continuous checks that systems still match the baseline.
- Cloud posture management โ automated auditing of cloud resource settings.
Example: A cloud storage bucket set to public access exposes data without any software vulnerability being involved. The system worked exactly as configured โ the configuration was the failure.
Interview Tip: Emphasize drift. Systems are usually hardened correctly at deployment and degrade over time through emergency changes and troubleshooting that never gets reverted. Continuous auditing, not one-time hardening, is the actual answer.
Question 12: What is the difference between brute force, password spraying, and credential stuffing?
Answer: All three are credential attacks, but they differ in method. Brute force tries many passwords against one account. Password spraying tries a small number of common passwords across many accounts. Credential stuffing replays username-password pairs stolen from previous breaches against a different service.
Explanation: The distinction matters because each produces a different detection signature:
- Brute force: high failure count concentrated on one account. Easy to detect; easy to stop with lockout policies.
- Password spraying: low failure count per account, spread across many accounts, often deliberately paced to stay under lockout thresholds. Invisible to per-account thresholds โ you must detect at the source or organization level.
- Credential stuffing: high volume of attempts using valid credential pairs from elsewhere, exploiting password reuse. Often distributed across many IPs and automated.
Example (defensive framing): A SOC detection for password spraying does not count failures per user. It counts distinct accounts failing from a single source IP within a time window โ which is exactly the pattern lockout policies miss.
Interview Tip: Give the defense for each: rate limiting and lockout for brute force, source-based and organization-wide anomaly detection for spraying, and breached-password screening plus MFA for stuffing. Then note the common thread โ phishing-resistant MFA blunts all three, because a valid password alone stops being sufficient.
Question 13: What is a man-in-the-middle attack, and how does ARP spoofing relate to it?
Answer: A man-in-the-middle (MITM) attack occurs when an adversary positions themselves between two communicating parties to intercept or alter traffic. ARP spoofing is one technique used to achieve that position on a local network by sending forged ARP messages that associate the attacker's MAC address with another host's IP address.
Explanation: ARP (Address Resolution Protocol) has no authentication โ it accepts replies at face value and caches them. That design assumption is the weakness, and it exists at Layer 2 within a single broadcast domain.
Related interception techniques include rogue wireless access points, DHCP spoofing, and DNS spoofing. The objective is the same: become the path that traffic travels through.
Defensive controls:
- TLS with proper certificate validation โ interception of encrypted traffic still fails without a trusted certificate, which is why certificate warnings should never be dismissed.
- Dynamic ARP Inspection (DAI) and DHCP snooping on managed switches.
- 802.1X network access control to authenticate devices before granting network access.
- Network segmentation, which limits the broadcast domain an attacker can operate within.
- HSTS to prevent protocol downgrade to unencrypted HTTP.
Example: On an unmanaged flat office network, ARP has no integrity protection at all โ which is precisely why Dynamic ARP Inspection exists as a switch-level control and why encryption in transit is treated as mandatory rather than optional.
Interview Tip: Answer this from the defensive side by default. The strongest framing is: "MITM is a positioning problem; encryption with proper validation makes the position much less valuable." That reframes it from an attack technique into an architecture decision, which is what interviewers are actually assessing.
Question 14: What are the main categories of DDoS attacks, and how are they mitigated?
Answer: A Distributed Denial of Service (DDoS) attack uses many distributed sources to exhaust a target's bandwidth, protocol state, or application resources, degrading availability. The three main categories are volumetric, protocol, and application-layer attacks.
Explanation:
- Volumetric: Saturates bandwidth with sheer traffic volume, often using amplification via misconfigured third-party services. Measured in Gbps/Tbps.
- Protocol / state-exhaustion: Consumes connection-tracking resources on firewalls, load balancers, and servers rather than raw bandwidth. Measured in packets per second.
- Application-layer (Layer 7): Sends relatively few but expensive requests that consume server-side processing โ for example, requests targeting resource-intensive endpoints. Hardest to distinguish from legitimate traffic.
DDoS directly attacks the availability leg of the CIA Triad.
Mitigations:
- Upstream scrubbing services and CDN absorption.
- Rate limiting and connection thresholds.
- Anycast distribution to spread load geographically.
- Web application firewalls for Layer 7 filtering.
- Capacity planning and a rehearsed response runbook with the ISP or provider.
Example: A volumetric flood is often visible as an obvious bandwidth spike. A well-crafted Layer 7 attack may show normal traffic volume while application response times collapse โ which is why availability monitoring must track performance, not just uptime.
Interview Tip: Note that DDoS is sometimes used as a distraction while a different intrusion proceeds elsewhere. Candidates who mention that a SOC should not pull all resources onto a DDoS event without continuing to monitor other telemetry stand out immediately.
Question 15: What are the core principles of digital forensics?
Answer: Digital forensics is the disciplined identification, preservation, collection, analysis, and reporting of digital evidence in a manner that maintains its integrity and admissibility. Its core principles are evidence preservation, chain of custody, order of volatility, and documented, repeatable process.
Explanation:
- Chain of custody: A continuous record of who handled evidence, when, why, and how. A gap can render evidence unusable in legal proceedings.
- Order of volatility: Collect the most perishable data first โ CPU registers and cache, then RAM, then network connections and running processes, then disk, then remote logs and backups. Rebooting a compromised host destroys memory evidence permanently.
- Working on copies: Analysis is performed on verified forensic images, never the original media. Cryptographic hashes verify that the copy is identical and unaltered.
- Documentation: Every action recorded, so another examiner could reproduce the findings.
Forensics connects directly to incident response: it answers how the attacker got in, what they accessed, and whether they still have access โ questions containment alone cannot resolve.
Example: An analyst who immediately powers off a suspected compromised host loses all memory-resident evidence, including in-memory-only malware, decrypted keys, and active network connections. Capturing volatile memory before shutdown preserves that entire evidence class.
Interview Tip: Acknowledge the real-world tension: containment speed versus evidence preservation. Isolating a host from the network (rather than powering it down) is often the right compromise โ it stops attacker communication while keeping volatile evidence intact. Recognizing that trade-off is a strong intermediate-level answer.
Conclusion
Part 2 covered the operational layer of cybersecurity: how a SIEM turns raw logs into correlated alerts, how a SOC triages and escalates them, how IOCs and IOAs differ in resilience, and how EDR and threat intelligence extend detection beyond signatures.
On the defensive architecture side, it covered defense in depth, network segmentation, vulnerability management, patch management, and security misconfiguration โ and on the attack-understanding side, credential attacks, MITM and ARP spoofing, DDoS categories, and digital forensics fundamentals.
A pattern runs through nearly every answer: interviewers are not testing whether you can recite a definition. They are testing whether you understand the trade-off behind each control. Why EDR without tuning creates alert fatigue. Why severity is not priority. Why fast containment can destroy evidence.
If you want to make this material stick:
- Save this article and work through the questions out loud rather than reading them.
- Practice in authorized environments only โ home labs you own, CTF platforms, and training ranges built for the purpose.
- Build something small. Parsing a set of sample logs teaches more about detection than any definition will.
- Keep going. Fundamentals compound faster than anything else in this field.
Which cybersecurity interview question should I cover in Part 3?
โ ๏ธ Ethical & Legal Disclaimer
This article is published strictly for educational purposes, specifically cybersecurity learning and interview preparation.
Cybersecurity knowledge carries responsibility. Every concept described here must be applied legally and ethically. Security testing of any kind must be performed only on systems, networks, applications, devices, or environments where explicit, documented authorization has been granted โ or within purpose-built labs, CTF platforms, and training environments you are permitted to use.
Nothing in this article should be used for unauthorized access, credential theft, malware development or deployment, exploitation of systems you do not own or have permission to test, service disruption, data theft, surveillance, or any other unlawful activity. All attack techniques discussed are presented from a defensive and detection-focused perspective, and every example should be understood as an educational, defensive, laboratory, CTF, or authorized security-testing scenario.
Readers are solely responsible for complying with applicable laws, regulations, organizational policies, and terms of service in their jurisdiction. The author does not encourage or endorse unauthorized or malicious activity in any form.
About the Author
Author: Karanam Shrivasta
A 15-year-old cybersecurity learner focused on blue-team fundamentals, detection concepts, and building small security tools. This series is written as public study notes โ if you spot an inaccuracy, corrections are genuinely welcome in the responses.
LinkedIn: https://www.linkedin.com/in/karanam-shrivasta/ GitHub: https://github.com/mrshrivasta
Publishing Metadata
SEO Title: Cybersecurity Interview Questions โ Part 2: 15 Medium-Level Questions and Answers
SEO Description: 15 medium-level cybersecurity interview questions and answers covering SIEM, SOC operations, IOC vs IOA, EDR, threat intelligence, vulnerability management, network segmentation, credential attacks, DDoS, and digital forensics โ with explanations, examples, and interview tips for security analyst and SOC interview preparation.
Suggested Medium Topics (5):
- Cybersecurity
- Information Security
- Network Security
- Interview Questions
- Ethical Hacking
Suggested Canonical Keywords:
- cybersecurity interview questions
- cybersecurity interview questions and answers
- medium level cybersecurity interview questions
- SOC interview questions
- security analyst interview questions
- information security interview questions
- network security interview questions
- SIEM interview questions
- IOC vs IOA
- cybersecurity interview preparation
LinkedIn Promotional Teaser:
Cybersecurity Interview Questions โ Part 2 is live. ๐
Part 1 covered the fundamentals. Part 2 moves into how security teams actually operate:
โ What a SIEM does beyond storing logs โ IOC vs IOA โ and why behavior beats artifacts โ EDR vs traditional antivirus โ Why severity is not the same as priority โ Brute force vs password spraying vs credential stuffing โ Why fast containment can destroy forensic evidence
15 questions, each with a direct answer, an explanation, an example, and one interview tip.
Written as study notes, published in case they're useful to someone else preparing.
Which question should Part 3 cover? Drop it in the comments.
#CyberSecurity #CyberSecurityInterview #InfoSec #SOC #NetworkSecurity #SecurityAnalyst #BlueTeam #CyberSecurityCareer