Cyber Questline
On this page
CompTIA Security+ SY0-701
Reviewed 2026-09-08
Search libraryPractice

CompTIA Security+ SY0-701 Study Guide: Securing Systems and Networks

Course section: Securing Systems and Networks Estimated course time: 12 hours Coverage: 4 modules, 90 practice questions Purpose: Full exam-focused study notes for this Security+ course section. This is original study material, not a transcript, Coursera quiz copy, or real CompTIA exam content.

How To Use This Guide

  1. Read one module at a time.
  2. Memorize the high-yield anchors first.
  3. Work through the module details and lab notes.
  4. Take the matching practice-question bank.
  5. Review missed questions by returning to the named section.
  6. Retest until you can score at least 85%, with 90% or better as the comfort target.

Exam Context

High-Yield Memory Anchors

Course Map

  1. Tools of the Trade - Security tools turn questions into evidence. The exam expects you to know which tool collects which evidence and how to use output safely. Tools are not magic: authorization, scope, timing, and interpretation matter.
  2. Securing Individual Systems - Endpoint security combines hardening, monitoring, protection, and recovery. A single workstation can become the path to credentials, lateral movement, data loss, or business disruption.
  3. Securing The Basic LAN - LAN security is architecture plus enforcement. You need segmentation, trust boundaries, cryptographic protection, monitoring, and secure access paths. The exam often asks where to place a control or which control best addresses a scenario.
  4. Securing Wireless LANs - Wireless extends the network beyond walls, so authentication, encryption, radio planning, and monitoring matter. The exam focuses on choosing secure standards, identifying attacks, and hardening wireless deployments.

Study Notes

Tools of the Trade

Big Picture

Security tools turn questions into evidence. The exam expects you to know which tool collects which evidence and how to use output safely. Tools are not magic: authorization, scope, timing, and interpretation matter.

Must Know

CLI fundamentals

The command line is fast, repeatable, and scriptable. PowerShell returns objects and is strong for Windows automation. Linux shells combine small text-processing tools through pipes and redirection.

Nmap

Nmap can discover hosts, open ports, service versions, and sometimes OS hints. In exam scenarios, use it when you need to identify exposed services or validate a network surface. Avoid confusing it with a vulnerability scanner or packet analyzer.

Wireshark and tcpdump

Packet capture answers what actually crossed the wire. Wireshark is graphical and rich for protocol decoding. tcpdump is lightweight and useful on servers. Captures may contain credentials, tokens, and personal data, so protect them.

Logs and centralized logging

Local logs are useful, but centralized logging improves retention and correlation. Security teams use SIEM-like workflows to correlate authentication, endpoint, firewall, DNS, and application events.

Benchmark tools

CIS-style benchmarks and configuration assessment tools compare systems to secure baselines. They help find drift, insecure defaults, and hardening gaps.

Time and evidence

NTP and consistent time zones matter because investigations depend on event sequence. A correct alert with wrong time can mislead responders.

Hands-On Practice

Exam Traps

Quick Self-Check

Securing Individual Systems

Big Picture

Endpoint security combines hardening, monitoring, protection, and recovery. A single workstation can become the path to credentials, lateral movement, data loss, or business disruption.

Must Know

Malware categories

Viruses attach to files, worms self-propagate, trojans masquerade as legitimate software, ransomware denies access for payment, spyware collects information, rootkits hide activity, and logic bombs trigger under conditions.

Weak configuration

Common weaknesses include default credentials, exposed admin interfaces, unnecessary services, permissive file shares, missing patches, weak TLS, open storage buckets, and excessive local admin rights.

To assess whether removal of unauthorized local-administrator rights operated throughout a quarter, examine time-stamped endpoint evidence sampled across that period, approved exceptions, and independent validation. A quarter-end screenshot establishes only one observed state; a policy or manager assertion states intent, not sustained operation. Reconcile the sampled assets with the inventory and investigate missing reports before extending the conclusion. NIST SP 800-53A Rev. 5 provides control-assessment methods; Governance Assurance And Privacy Evidence expands the distinction between scope, period, and operating evidence.

Password attacks

Brute force tries many possibilities, dictionary attacks use wordlists, spraying tries a few common passwords against many accounts, stuffing reuses leaked credentials, and offline cracking attacks stolen password hashes.

Overflow attacks

Buffer overflows exploit memory handling errors. Modern protections such as ASLR, DEP, stack canaries, patching, and safe languages reduce risk but do not remove the need for secure coding.

Botnets

A botnet is a group of compromised devices controlled by an operator. It can support DDoS, credential attacks, spam, fraud, and proxying. IoT devices with weak defaults are common targets.

RAID and backups

RAID improves disk availability or performance depending on level, but it does not replace backups. RAID will not save you from deletion, corruption, ransomware, or site loss.

Endpoint encryption

Full-disk encryption protects data at rest if a device is lost or stolen. It is strongest when paired with TPM, strong authentication, recovery-key management, and screen-lock policies.

Hands-On Practice

Exam Traps

Quick Self-Check

Securing The Basic LAN

Layered LAN security controlsStrong LAN security combines endpoint, switch, perimeter, monitoring, and administrative controls.
Endpoint hardeningPatch, EDR, host firewall, least privilege
Switch controlsVLANs, port security, 802.1X, DHCP snooping
Boundary controlsFirewall, proxy, VPN, ACLs
DetectionIDS/IPS, logs, SIEM alerts
ProcessChange control, backups, incident handling

Big Picture

LAN security is architecture plus enforcement. You need segmentation, trust boundaries, cryptographic protection, monitoring, and secure access paths. The exam often asks where to place a control or which control best addresses a scenario.

Must Know

Certificates and PKI

Certificates bind identities to public keys. PKI includes CAs, RAs, certificate policies, issuance, renewal, revocation, and trust chains. Common certificate problems include expiration, hostname mismatch, untrusted issuer, weak key, and missing private-key protection.

Layer 2 risks

ARP poisoning, MAC flooding, VLAN hopping, rogue DHCP, and spoofing exploit local trust assumptions. Mitigations include DHCP snooping, dynamic ARP inspection, port security, disabling unused ports, restricting trunking, and segmentation.

Zero trust architecture

Zero trust removes implicit trust based on network location. It emphasizes explicit verification, continuous evaluation, least privilege, device posture, strong identity, segmentation, and monitoring.

Firewalls

Firewalls enforce traffic policy. Host firewalls protect individual systems; network firewalls protect boundaries or segments; stateful firewalls track sessions; application-aware devices understand higher-layer behavior.

Proxies and filtering

Forward proxies mediate outbound client traffic. Reverse proxies front-end servers. Proxies may filter URLs, inspect content, cache, authenticate, or provide application-layer protection.

NAT and PAT

NAT rewrites addressing information, commonly translating private internal addresses to public connectivity. PAT maps many internal sessions to one public address using ports. NAT is not a security boundary by itself.

VPNs and IPsec

VPNs protect traffic across untrusted networks. Site-to-site VPNs connect networks; remote-access VPNs connect users. Split tunneling can improve performance but may increase risk.

IDS and IPS

IDS is usually out-of-band or passive and alerts on suspicious activity. IPS is inline and can block. Both may use signatures, behavior, heuristics, or anomaly detection.

Honeypots

Honeypots are decoys used for detection, deception, and intelligence. They must be isolated and monitored so they do not become an attacker platform.

Hands-On Practice

Exam Traps

Quick Self-Check

Securing Wireless LANs

Enterprise wireless authenticationIn enterprise Wi-Fi, the AP usually relays identity checks instead of making the final user decision alone.
SupplicantUser/device
Access pointAuthenticator
Identity serverPolicy + credentials
Network accessVLAN/ACL assignment

Big Picture

Wireless extends the network beyond walls, so authentication, encryption, radio planning, and monitoring matter. The exam focuses on choosing secure standards, identifying attacks, and hardening wireless deployments.

Must Know

Wi-Fi encryption standards

WEP is obsolete and broken. WPA2 with AES/CCMP remains common. WPA3 improves protections such as SAE for personal networks. Enterprise deployments commonly use 802.1X with RADIUS-backed authentication.

Wireless discovery and attacks

Attackers may create evil twin APs, deploy rogue APs, force deauthentication, jam radio frequencies, capture handshakes, or trick users into credential portals. Hiding an SSID is not meaningful security.

Coverage and performance

Too much signal leakage can increase exposure, while poor coverage can cause roaming problems and support calls. Channel planning, power tuning, antenna choice, and site surveys help.

Bluetooth, RFID, and NFC

Short-range technologies can still expose pairing, tracking, relay, or skimming risks. Disable unused radios, use strong pairing, and segment or monitor dedicated device networks.

Wireless segmentation

Guest Wi-Fi should be isolated from internal systems. IoT and unmanaged wireless devices often deserve separate VLANs and firewall policy.

Hands-On Practice

Exam Traps

Quick Self-Check

Final Review Checklist

Deep Review Tables

Tool Selection Table

TaskTool Or SourceReason
Identify open ports on an authorized hostNmapDiscovers exposed services
Inspect packet contentsWiresharkDecodes protocols in a GUI
Capture packets on a headless Linux servertcpdumpLightweight command-line capture
Audit Windows configurationPowerShellScriptable object-based administration
Analyze failed SSH loginsLinux auth logsShows authentication events
Correlate firewall and endpoint alertsCentralized logging/SIEMCombines multiple evidence sources
Compare server settings to hardening guidanceBenchmark toolFinds configuration drift

Endpoint Hardening Checklist

AreaBaseline ActionExam Reason
PatchingApply OS, application, firmware, and driver updatesRemoves known vulnerabilities
AccountsRemove local admin where not neededEnforces least privilege
ServicesDisable unused services and portsReduces attack surface
Malware defenseUse EDR/AV and behavior monitoringDetects or blocks suspicious activity
FirewallEnable host firewall rulesLimits inbound and outbound exposure
Disk protectionUse full-disk encryptionProtects lost or stolen devices
ConfigurationApply secure baselineReduces weak defaults
LoggingEnable useful security logsSupports detection and forensics
RecoveryMaintain tested backupsSupports restoration after failure or attack

Network Control Placement

NeedControlPlacement Cue
Block internet to databaseFirewall ruleBetween trust zones or on host
Inspect malicious traffic inlineIPSIn path of traffic
Alert on suspicious mirrored trafficIDSConnected to tap/SPAN/mirror
Mediate outbound web browsingForward proxyBetween clients and internet
Protect public web appReverse proxy/WAFIn front of application
Isolate guest Wi-FiVLAN and firewall policySeparate network segment
Detect attacker interactionHoneypotIsolated decoy network
Secure remote user accessVPN/ZTNARemote access boundary

Wireless Security Checklist

AreaSecure ChoiceAvoid
EncryptionWPA3 or WPA2-AES/CCMPWEP, TKIP, open networks for sensitive access
AuthenticationEnterprise 802.1X where appropriateShared PSKs for large organizations
Convenience featuresDisable WPSPush-button enrollment on production networks
Guest accessSegment and restrictSame VLAN as internal systems
FirmwareKeep APs updatedUnsupported AP firmware
MonitoringWatch rogue APs and evil twinsAssuming hidden SSID is security
RF designUse site surveys and channel planningExcessive leakage or co-channel interference

Protocol And Port Awareness

Security+ is not a port-memorization exam only, but you should recognize common services in scenarios. Know why secure replacements matter:

ServiceUsual Port And TransportSecurity Purpose
HTTPS using HTTP/1.1 or HTTP/2TCP 443HTTP protected by Transport Layer Security (TLS)
Secure Shell (SSH)TCP 22Encrypted remote administration
LDAP over TLS (LDAPS)TCP 636Encrypted directory connection from connection establishment
SSH File Transfer Protocol (SFTP)The SSH connection, normally TCP 22File transfer through SSH, not FTP with TLS

These are defaults, not proof that a service is secure or even that the expected application is listening. HTTP/3 uses QUIC over UDP, commonly port 443; the TCP-based HTTPS questions explicitly specify TCP. LDAP can also negotiate StartTLS on TCP 389, which differs from an LDAPS connection starting with TLS on 636. FTPS adds TLS to FTP and is distinct from SFTP.

Primary references: HTTP semantics, RFC 9110, SSH transport, RFC 4253 section 4.1, IANA LDAPS registration, and OpenSSH SFTP manual.

Scenario Drills

  1. Users report slow Wi-Fi and disconnects in one area. Think coverage, interference, channel plan, power, and AP placement before assuming compromise.
  2. A server has many failed logins from one username across many passwords. That looks like brute force. One password across many accounts looks like spraying.
  3. A sensor only alerts from mirrored traffic. That is IDS behavior. A device dropping malicious traffic inline is IPS behavior.
  4. A database is not directly exposed to the internet but is reachable from a compromised web server. Segmentation and least privilege matter inside the LAN.
  5. A scan finds open SSH on a public host. The next action depends on business need, source restrictions, authentication, patching, and monitoring.

Command And Evidence Quick Reference

Use these as recognition anchors for exam scenarios. You do not need to memorize every switch, but you should know which command family fits the evidence need.

NeedWindows DirectionLinux DirectionEvidence Produced
View IP configurationipconfig /allip addr or ifconfigAddresses, gateways, DNS hints
Test reachabilitypingpingBasic ICMP reachability and latency
Trace pathtracerttraceroute or tracepathHop-by-hop routing path
View listening connectionsnetstat or PowerShell cmdletsss or netstatPorts, protocols, process hints
Resolve DNSnslookupdig or nslookupName resolution records
Review logsEvent Viewer or Get-WinEventjournalctl, auth.log, syslogAuthentication and system evidence
Check processesTask Manager or Get-Processps, topRunning process state
Inspect firewallWindows Defender Firewall toolsiptables, nftables, ufw, firewalldHost traffic policy

Evidence Handling For Tool Output

More Scenario Drills

  1. A packet capture shows cleartext credentials. Identify the insecure protocol and recommend an encrypted replacement.
  2. A benchmark report flags local administrator membership. Tie the finding to least privilege and account review.
  3. A host firewall blocks inbound traffic, but the application still cannot reach a database. Check outbound policy, network firewall rules, DNS, routing, and service status.
  4. A wireless client connects but cannot get an IP address. Investigate DHCP scope, VLAN tagging, relay, firewall, and AP-to-switch trunk configuration.
  5. A vulnerability scanner reports a missing patch on a domain controller. Prioritize with asset criticality and maintenance/change-management requirements.

September 2026 Applied Review

The added scenarios use invented evidence and defensive decisions. Numbered objectives refer to CompTIA's SY0-701 objectives, version 6.0. Read evidence as an observation with limits, not an automatic verdict.

Threat Evidence And Bounded Conclusions

A vulnerability is a weakness a threat can exploit; a threat is a possible cause of harm, and risk considers likelihood and impact. An exploit takes advantage of the weakness. These are different concepts, even when they appear in the same incident. See the NIST vulnerability glossary.

Phishing uses deceptive messages; smishing uses text messages and vishing uses voice calls. Credential stuffing reuses stolen username-password pairs at other services. Password spraying tries a small number of common guesses across many accounts; brute-force guessing can try many candidates against one account. A delivery channel or failed attempt alone does not prove compromise.

Separate observed fact, working hypothesis, confidence, and next verification. A successful login identifies an account, not necessarily its human operator. A DLP upload suggests a policy issue but does not prove revenge. Strategic targeting may fit state espionage without proving state sponsorship. Shadow IT can arise from an unmet business need without malicious intent.

ObservationSupported InterpretationImportant Limit
Paced failures across many usersAutomated multi-account guessingOrdinary logs do not reveal whether the same password was used
One source makes many guesses at one accountBrute-force patternFailure count does not establish success
Repeated unexpected MFA promptsPossible fatigue attemptInvestigate associated password and session activity
Local logs continue while one collector queues eventsCollection-path impairmentMissing central alerts are not proof of clean hosts
Recovery copies disappear, files change, extortion note appearsLikely ransomwareAn extension alone does not prove encryption
A signed update contains unauthorized behaviorSupply-chain integrity concernA valid signature establishes a signer, not benign software

Worked example: 40 endpoints go quiet in the SIEM, but local logs and the shared collector's full queue are preserved. Investigate the common collection dependency first. Do not label every endpoint compromised or healthy. Monitor ingestion delay, queue depth, parsing failures, source count, and expected event cadence. Logging design is covered in NIST SP 800-92.

A zero-day describes a previously unknown weakness, not simply any unpatched machine. A supported but unpatched OS, an unsupported platform, a bad configuration, and a malicious update need different responses. When a patch does not exist, assess a vendor-supported mitigation, restrict exposure, retain an owner, and track the permanent fix. CISA's June 2026 risk-based update bulletin emphasizes exposure and exploitation context rather than severity alone.

A crash report showing a bounds violation suggests a memory-safety defect such as buffer overflow; it does not establish that code execution occurred. Remediation includes bounds-safe code, memory-safe components where practical, supported fixes, and platform mitigations. A time-of-check/time-of-use race means a security decision and later operation can refer to a changed object. Developers should use a stable object reference or an appropriate atomic operation, not assume a second pathname check eliminates the race. These are defensive code-review findings, not instructions to reproduce an attack.

A Trojan disguises malicious behavior as useful software. A potentially unwanted application can instead be poorly disclosed, intrusive, or bundled without establishing the same intent. A logic bomb is triggered by a condition; privilege escalation crosses an authorization boundary. Classify from the observed behavior and context, then preserve evidence and remove unauthorized software through the response process. Do not label every crash malware or every unwanted application a confirmed Trojan.

A downgrade reduces negotiated protection through a weaker accepted option. A collision defeats the practical difficulty of finding distinct inputs with the same digest; the birthday effect explains why generic collision search has a lower work factor than searching for a particular preimage. These are different from stealing a key. Enforce protocol minimums and test compatibility. TLS 1.3, RFC 8446 addresses authenticated negotiation and downgrade protection.

Social-engineering channels include email, text, voice, messaging, files, and removable media. A believable manager name, caller ID, or urgent outage story is not identity proof. A watering-hole event involves a site frequented by the target audience; typosquatting uses a look-alike name. Misinformation can be mistaken; disinformation involves deliberate deception. Use an independently obtained contact route, preserve the suspicious message, and report through the approved channel. NIST SP 800-50 Rev. 1 treats reporting behavior and continuing learning as program outcomes.

Evidence Correlation And Time Normalization

Select the source that can answer the question. DNS logs show lookup activity; a firewall allow event shows a permitted flow; a server audit can show an object access; endpoint telemetry can show a process. None automatically supplies all the others. A DNS answer is not proof that a connection completed, and an HTTP success status alone may not prove that a sensitive business action succeeded.

For Windows, Event 4624 indicates a successful logon. Type 3 is a network logon, while type 10 is remote interactive. A type 3 event is not, by itself, evidence of an RDP desktop or file download. Correlate Logon ID, account, source, resource auditing, and processes. Field availability depends on event version and authentication mechanism. See Microsoft's Event 4624 reference.

Worked timestamp: source=12:08 UTC, measured clock=120 seconds ahead, collector receipt 12:07 UTC. Normalized event time is 12:08 - 00:02 = 12:06 UTC. The remaining minute is delivery delay, not another clock correction. Keep source time, measurement and uncertainty, receipt time, and normalized time separately. Do not rewrite an original log to make the timeline convenient. Establish time-zone conventions and investigate drift before comparing apparent ordering across systems.

Worked DNS filter: dns.flags.response == 0 && ip.src == 10.20.4.15 selects decoded DNS queries sent by the named host. dns alone includes responses; ip.addr includes both directions. Encrypted DNS may be opaque without authorized decryption, and a display filter cannot recover packets that were never captured. See the Wireshark DNS field reference.

Capture filters and display filters are different languages. A read-only host capture filter selects both source and destination traffic for an address; a src host or dst host restriction selects just one direction. Record interface and visibility limitations. Retain a protected original, hash it, and share a minimized derivative with its provenance, not a usable credential or session token.

Physical evidence also needs provenance. For a visitor with no checkout entry, preserve the original record, validate CCTV and badge state, then add a traceable correction. An access event, a collector heartbeat, and camera time may have different clocks. Avoid assuming a heartbeat timestamp is the time a door opened.

Containment And Control Tradeoffs

Containment is a bounded reduction in harm, not necessarily a shutdown. Confirmed active endpoint compromise can justify immediate EDR isolation under the response plan. Preserve authorized response connectivity where the product supports it, verify peer restrictions, and coordinate service impact. In a plant, safety and operations authority constrain the available action. The jointly issued CISA/FBI/NSA/MS-ISAC StopRansomware guide, available from NSA covers containment and recovery-copy protection.

Control ChoiceGainTradeoff To Validate
Passive IDS on mirrored trafficDetection without forwarding dependencyCannot itself block; mirror loss limits visibility
Inline IPSCan stop covered trafficFalse positives and failure behavior affect service
Full-tunnel VPNCentralized routing and inspectionBandwidth and gateway dependency; verify actual routes
Restricted management gatewayNarrow access and attributable sessionsGateway availability and privilege become critical
DLP blockingCan interrupt an unauthorized disclosureFalse positives can obstruct approved work
NAC or 802.1XIdentity-based admissionFailure policy and unsupported devices need review

A VLAN name does not enforce a boundary. Test which sources can reach which destinations and services. NAT changes addressing and is not encryption or object authorization. DHCP snooping, dynamic ARP inspection, port security, trunk restrictions, and unused-port shutdown address different local risks; choose the feature that matches the evidence.

For a DLP exception, define the actual report, owner, recipient, data transformation, permitted action, and expiry. Test that the intended workflow succeeds while unrelated sensitive exports remain blocked. Avoid exempting an entire person or domain because one export is legitimate. This applies least privilege and configuration governance from NIST SP 800-53.

SNMP security is a configuration decision. authPriv supplies authentication/integrity plus privacy; authNoPriv authenticates without encryption; noAuthNoPriv supplies neither. Use currently supported secure algorithms and restrict management reachability. The security levels are defined in RFC 3414. Choosing version 3 by name does not prove encrypted telemetry.

Vulnerability Evidence And Prioritization

Track an asset from discovery through validated closure: identity, owner, product/package, advisory applicability, exposure, business role, evidence, treatment, deadline, and retest. An inventory is not complete merely because every reporting agent appears in its console; reconcile cloud, procurement, directory, network, and disposal records.

An authenticated scan with failed credentials cannot establish that local patch checks passed. Distinguish a successful check that found no issue from a skipped check, unsupported platform, offline host, or stale dashboard. After repairing scan access through approved permissions, revalidate the original condition. Assessment must test the claimed control, as discussed in NIST SP 800-53A Rev. 5.

Version strings are clues, not final patch evidence. A vendor can backport a fix while retaining the upstream version. Confirm installed package release and applicable vendor advisory; preserve that evidence and narrowly tune a false positive. See Red Hat's backporting explanation. Do not globally suppress a vulnerability family because one package is fixed.

CVSS describes technical severity; KEV records known exploitation; EPSS estimates exploitation probability over the next 30 days. None is the organization's actual annual loss probability. Combine exposure, criticality, current exploitation evidence, compensating controls, and remediation safety. A vulnerability absent from KEV is not proven unexploited. See FIRST's EPSS description and CISA's risk-prioritization bulletin. Federal directive deadlines are not universal deadlines for every private organization.

SAST analyzes code without running it, DAST evaluates a running application, and software composition analysis inventories dependencies and known component issues. SCAP standardizes assessment content and data exchange; it does not replace a tailored baseline or a reviewer. After remediation, verify the original configuration or package condition and business function without reproducing an exploit. A ticket marked done is not technical closure evidence.

Automation Guardrails And Validation

Automation repeats tasks; orchestration coordinates tasks across systems. Use signed or reviewed scripts, narrow service identities, input validation, approved change authority, bounded scope, audit records, and a failure path. A signature shows approved provenance, not that a script is logically correct. High-impact actions need confidence thresholds and appropriate human approval.

Worked retry: a containment API times out. The remote service may have completed the action before the response was lost. Preserve a stable case/action identifier, inspect actual state, and make the retry idempotent so it does not create duplicate tickets or repeated changes. Record requested, acknowledged, verified, and failed states separately. AWS's idempotent API guidance explains this uncertain-outcome problem.

Test a playbook with a harmless duplicate alert and a simulated API failure. Confirm it neither broadens privileges nor treats transmission as success. Maintain rollback or recovery handling where meaningful, a circuit breaker for widespread failures, and an accountable owner for long-term support. Review integrations when API schemas or permissions change.

Wireless Identity And Platform Limits

EAP is an authentication framework, not one authentication method. EAP-TLS uses certificates; RADIUS commonly transports the AAA exchange between the access device and authentication service. The CA's revocation state and the authentication server's checking policy determine certificate rejection. RADIUS does not itself revoke a certificate. Enrolled clients must validate the intended server identity; accepting any presented certificate undermines protection against an evil twin.

An SSID, strong signal, or captive portal logo does not authenticate an AP. Site surveys measure coverage and interference; managed device and authentication records establish approved infrastructure. Guest separation requires both a distinct segment and restrictive routing, plus client isolation where peer access is prohibited. Unsupported scanners may need an isolated allow-listed path with monitoring until replacement.

An SSH error identifying unsafe authorized-key ownership points to file protection, not necessarily a bad cryptographic key. Check the existing ownership and mode requirements before changing authentication methods. See OpenSSH StrictModes. The general lesson is to fix the condition the evidence actually identifies.