Question 95 of 1,152
Threats, Vulnerabilities, and MitigationsmediumMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is exposed service, because the IoT camera’s management and streaming ports are bound to all interfaces and allowed from any source. When a device like an IoT camera listens on 0.0.0.0 and its firewall permits traffic from 0.0.0.0/0, the management interface (TCP 443) and RTSP streaming interface (TCP 554) become reachable from the entire internet, creating a classic exposed service vulnerability. On the Security+ SY0-701 exam, this scenario tests your ability to interpret network configuration exhibits and recognize misconfigured access controls—a common trap is confusing “listening on all interfaces” with a secure internal-only setup. Remember that 0.0.0.0 means “everywhere,” so if the firewall rule also says 0.0.0.0/0, the service is exposed to the world. A quick memory tip: “Double zero equals double trouble”—when both the bind address and the source rule are 0.0.0.0, you have an exposed service ripe for attack.

SY0-701 Threats, Vulnerabilities, and Mitigations Practice Question

This SY0-701 practice question tests your understanding of threats, vulnerabilities, and mitigations. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

Exhibit

Configuration review output from a new network camera deployment:

Interface status:
  0.0.0.0:8080   LISTEN  camera-web
  0.0.0.0:554    LISTEN  rtsp-stream
Admin banner:
  Firmware version 1.0.3
  Admin login: enabled
  Password policy: not enforced
Firewall ACL:
  allow tcp any any eq 8080
  allow tcp any any eq 554

Based on the exhibit, what security issue is most likely present?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1mediummultiple choice
Full question →

Exhibit

Configuration review output from a new network camera deployment:

Interface status:
  0.0.0.0:8080   LISTEN  camera-web
  0.0.0.0:554    LISTEN  rtsp-stream
Admin banner:
  Firmware version 1.0.3
  Admin login: enabled
  Password policy: not enforced
Firewall ACL:
  allow tcp any any eq 8080
  allow tcp any any eq 554

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Exposed service, because management and streaming ports are listening on all interfaces and allowed from anywhere.

Option C is correct because the exhibit shows that both the management interface (TCP 443) and the streaming interface (TCP 554) are bound to 0.0.0.0 (all interfaces) and the firewall rules allow traffic from 0.0.0.0/0 (any source). This exposes the camera's web management and RTSP streaming services to the entire internet, making it vulnerable to unauthorized access, reconnaissance, and potential exploitation. An exposed service of this nature is a common entry point for attackers to compromise IoT devices.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Weak permissions, because the camera streams video to multiple ports.

    Why it's wrong here

    This is not primarily a permissions problem. The exhibit shows services bound broadly and allowed through the firewall, which is an exposure issue rather than a file or object access-rights issue.

  • Default credentials, because the admin login is enabled.

    Why it's wrong here

    An enabled admin login is not enough to prove default credentials. The exhibit does not show a factory username and password, so that conclusion is unsupported.

  • Exposed service, because management and streaming ports are listening on all interfaces and allowed from anywhere.

    Why this is correct

    The main issue is exposed service. The camera-web and RTSP services listen on 0.0.0.0, which means all interfaces, and the ACL allows any source to connect. That exposes the device to the network far beyond the intended management scope, creating an easy attack path.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Outdated component, because firmware version 1.0.3 is listed.

    Why it's wrong here

    A firmware version alone does not prove it is outdated. You would need vendor advisory information or a known vulnerable release to make that determination with confidence.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates may focus on the presence of default credentials or outdated firmware as obvious vulnerabilities, but the exhibit does not provide evidence of those—instead, the clear misconfiguration is the service exposure, which is a distinct and common threat in IoT and network device security.

Trap categories for this question

  • Command / output trap

    This is not primarily a permissions problem. The exhibit shows services bound broadly and allowed through the firewall, which is an exposure issue rather than a file or object access-rights issue.

Detailed technical explanation

How to think about this question

Binding services to 0.0.0.0 means the service listens on all available network interfaces (e.g., Ethernet, Wi-Fi, VPN), which is often necessary for functionality but dangerous when combined with overly permissive firewall rules (0.0.0.0/0). In real-world attacks, Shodan and other search engines routinely index such exposed RTSP streams and web interfaces, allowing attackers to discover and compromise cameras without authentication. The combination of a management interface (HTTPS) and a streaming protocol (RTSP) on all interfaces with no source restriction is a textbook example of an exposed service vulnerability, often exploited in botnets like Mirai.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A security team runs a vulnerability scan on a web application and discovers an unpatched SQL injection flaw. The team prioritises remediation by CVSS score — critical flaws are patched within 24 hours, high within 7 days. Questions like this test whether you understand vulnerability management processes, scanning tools, and remediation prioritisation.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related SY0-701 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SY0-701 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SY0-701 question test?

Threats, Vulnerabilities, and Mitigations — This question tests Threats, Vulnerabilities, and Mitigations — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Exposed service, because management and streaming ports are listening on all interfaces and allowed from anywhere. — Option C is correct because the exhibit shows that both the management interface (TCP 443) and the streaming interface (TCP 554) are bound to 0.0.0.0 (all interfaces) and the firewall rules allow traffic from 0.0.0.0/0 (any source). This exposes the camera's web management and RTSP streaming services to the entire internet, making it vulnerable to unauthorized access, reconnaissance, and potential exploitation. An exposed service of this nature is a common entry point for attackers to compromise IoT devices.

What should I do if I get this SY0-701 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Keep practising

More SY0-701 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This SY0-701 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SY0-701 exam.