Strobesstrobes
Platform
Solutions
Resources
Customers
Company
Pricing
Book a Demo
Strobesstrobes

Strobes connects every exposure signal to autonomous action, so security teams fix what matters, prove what works, and stop chasing noise.

Book a DemoTalk to an expert
ISO 27001SOC 2CREST
  • Platform
  • Platform Overview
  • Agentic Exposure Management
  • AI Agents
  • Integrations
  • API & Developers
  • Workflows & Automation
  • Analytics & Reporting
  • Solutions
  • Exposure Assessment (EAP)
  • Attack Surface Management
  • Application Security Posture
  • Risk-Based Vulnerability Management
  • Adversarial Exposure Validation (AEV)
  • AI Pentesting
  • Pentesting as a Service
  • CTEM Framework
  • By Industry
  • Financial Institutions
  • Technology
  • Retail
  • Healthcare
  • Manufacturing
  • By Roles
  • CISOs
  • Security Directors
  • Cloud Security Leaders
  • App Sec Leaders
  • Resources
  • Blog
  • Customer Stories
  • eBooks
  • Datasheets
  • Videos & Demos
  • Exposure Management Academy
  • CTEM Maturity Assessment
  • Pentest Health Check
  • Security Tool ROI Calculator
  • Company
  • About Strobes
  • Meet the Team
  • Trust & Security
  • Contact Us
  • Careers
  • Become a Partner
  • Technology Partner
  • Partner Deal Registration
  • Press Release

Weekly insight for security leaders

CTEM research, agentic AI trends, and what's actually moving the needle.

© 2026 Strobes Security Inc. All rights reserved.

Privacy PolicyTerms of ServiceCookie PolicyAccessibilitySitemap
Back to Blog
Identifying Security Misconfigurations in Enterprise Networks
Network Pentesting

Identifying Security Misconfigurations in Enterprise Networks

Likhil ChekuriNovember 6, 20257 min read

Table of Contents

  • What are network security misconfigurations?
  • Why are default credentials still the top finding?
  • How do protocol and signing misconfigurations get exploited?
  • Why does flat network architecture matter so much?
  • What exposed services should you hunt for first?
  • Frequently asked questions
  • Sources and references

Authors

L
Likhil Chekuri

Share

Table of Contents

  • What are network security misconfigurations?
  • Why are default credentials still the top finding?
  • How do protocol and signing misconfigurations get exploited?
  • Why does flat network architecture matter so much?
  • What exposed services should you hunt for first?
  • Frequently asked questions
  • Sources and references

Authors

L
Likhil Chekuri

Share

TL;DR
  • ✓Network security misconfigurations, not novel exploits, are behind the majority of internal compromises a pentester reports.
  • ✓The repeat offenders are default credentials, default SNMP communities, disabled SMB signing, LLMNR/NBT-NS enabled, and flat networks with no segmentation.
  • ✓Exposed management interfaces (IPMI, iDRAC, switch admin panels, Kubernetes dashboards) hand attackers control planes with little effort.
  • ✓These issues are found with the same recon tooling as any network test: nmap, NetExec, snmpwalk, and credential checks against known defaults.
  • ✓Misconfigurations drift back constantly as devices are added and policies change, which is why continuous validation beats annual snapshots.

Most enterprise breaches don't start with a clever zero-day. They start with something that was set up wrong and never reviewed: a switch still using admin/admin, SNMP answering to the community string "public," or a flat network where one compromised laptop can reach the domain controllers. Verizon's breach research and CISA advisories keep pointing at the same boring root causes year after year.

This post catalogs the network security misconfigurations testers find on nearly every internal engagement, why each one matters, and how to fix it. Think of it as the defender's counterpart to our internal network penetration testing guide and external network penetration testing checklist.

What are network security misconfigurations?

Network security misconfigurations are settings, defaults, and architectural choices that weaken a network without being a software vulnerability per se. There's no CVE to patch; the device is working exactly as configured, and that configuration is the problem. This makes them easy to miss with a scanner that only reports missing patches.

They span every layer: default or weak credentials on devices, unencrypted or unsigned protocols, overly permissive firewall and ACL rules, missing segmentation, and exposed administrative interfaces. Because they require judgment to spot and context to prioritize, misconfigurations are where manual penetration testing earns its keep over automated scanning alone.

Top network misconfigurations and their fixes
MisconfigurationHow it's exploitedFix
Default credentialsSpray known defaults with NetExecMandate credential change at provisioning
SNMP community 'public'snmpwalk dumps configs and credsUse SNMPv3 with auth/priv; remove defaults
SMB signing not requiredNTLM relay via ntlmrelayxEnforce SMB signing via GPO
LLMNR/NBT-NS enabledResponder poisons and captures hashesDisable both via Group Policy
Flat networkPivot from any host to crown jewelsSegment user, server, and mgmt VLANs

Why are default credentials still the top finding?

Default credentials remain the most common network finding because devices ship with them and busy teams never change them. Switches, routers, printers, iLO/iDRAC/IPMI baseboard controllers, IP cameras, and PBXs all arrive with documented defaults, and lists like the SecLists default-credentials set make checking them trivial.

A tester sprays known defaults with NetExec and protocol-specific checks, and the hit rate is depressingly high. The fix is procedural, not technical: a hardening baseline that mandates credential changes at provisioning, plus periodic checks. The same applies to default SNMP communities, where snmpwalk -v2c -c public <host> or onesixtyone against the "public" and "private" strings often dumps full device configs, routing tables, and sometimes credentials in cleartext.

How do protocol and signing misconfigurations get exploited?

Insecure protocol settings turn ordinary network traffic into an attack vector. The headline example is SMB signing not being required, which lets an attacker relay captured NTLM authentication straight to another host with impacket's ntlmrelayx. Combined with LLMNR and NBT-NS being enabled (the Windows default), Responder poisons name resolution and feeds that relay chain.

The same theme repeats across protocols: cleartext Telnet and FTP where SSH and SFTP belong, unencrypted LDAP instead of LDAPS, missing 802.1X so anyone with a network jack gets a DHCP lease, and unencrypted SIP and RTP on the voice network. Each is a default that prioritizes compatibility over security. Disabling LLMNR/NBT-NS and enforcing SMB signing alone closes the most reliable internal credential-theft path, the same one detailed in our Active Directory penetration testing checklist.

Why does flat network architecture matter so much?

A flat network turns a single compromised host into access to everything, which is why segmentation is the highest-leverage architectural fix. When user workstations, servers, management interfaces, and voice systems all share one broadcast domain, a foothold anywhere reaches the crown jewels with no further effort.

Testers prove this by pivoting: from a phished workstation to the domain controllers, the SAN management interface, or the hypervisor console, all reachable because nothing blocks the path. Proper segmentation isolates user, server, and management VLANs, restricts traffic between them with ACLs, and puts a jump host in front of administrative planes. This is also a core control in frameworks like NIST and the CIS Controls, and it dramatically shrinks blast radius.

What exposed services should you hunt for first?

Exposed management and administrative interfaces are the first thing to hunt because they offer the most control for the least work. An nmap sweep for the usual suspects (nmap -p 22,23,80,443,623,2379,3389,5985,8006,8443,9443,10250 <range>) surfaces switch admin panels, IPMI/BMC interfaces on 623, Proxmox and ESXi consoles, etcd on 2379, the Kubernetes kubelet on 10250, and WinRM on 5985.

Each of these is a control plane. An unauthenticated kubelet or an IPMI controller with default creds is game over for the workloads behind it. The fix is to keep management interfaces off general-access networks entirely, require strong unique credentials and MFA, and restrict access to a bastion. Because new devices and services appear constantly, these exposures reappear between annual tests; agentic pentesting is the continuous way to catch a newly exposed interface within days instead of months.

Strobes insight
Misconfigurations beat exploits in nearly every internal report we write. The uncomfortable truth is that fixing five defaults (creds, SNMP, SMB signing, LLMNR, segmentation) would have stopped most of the breaches that hit the news.

Frequently asked questions

What is a network security misconfiguration?
It is a setting or architectural choice that weakens a network without being a software bug, such as default credentials, an unsigned SMB share, or a flat network with no segmentation. The device works as configured, but that configuration creates risk, which is why scanners that only check patches often miss it.
What are the most common network misconfigurations?
The repeat offenders are default or weak credentials, default SNMP community strings, SMB signing not being required, LLMNR and NBT-NS left enabled, flat networks without segmentation, and exposed management interfaces like IPMI and switch admin panels. Most internal pentests find several of these.
How do attackers exploit default SNMP communities?
Attackers query devices with common community strings like 'public' and 'private' using snmpwalk or onesixtyone. A read-only community often exposes full device configurations, routing tables, ARP caches, and sometimes credentials in cleartext, giving an attacker a detailed map of the network. SNMPv3 with authentication and encryption fixes it.
Why is network segmentation important?
Segmentation limits how far an attacker can move after compromising a single host. On a flat network, one phished workstation can reach domain controllers, hypervisors, and management interfaces directly. Isolating user, server, and management VLANs with ACLs and jump hosts dramatically reduces the blast radius of any compromise.
How do you find network misconfigurations?
Use the same recon tooling as any network test: nmap to map services and exposed management ports, NetExec to check SMB signing and spray default credentials, snmpwalk for SNMP exposure, and Responder to confirm LLMNR poisoning works. Manual review of firewall rules and VLAN design catches the architectural issues scanners miss.
Can vulnerability scanners detect all misconfigurations?
No. Scanners reliably flag missing patches and some known weak settings, but architectural problems like flat networks, overly permissive ACLs, and dangerous trust relationships need human judgment and context to identify and prioritize. That is why manual penetration testing remains essential for misconfiguration discovery.

Sources and references

  • CISA: Top Cyber Misconfigurations (NSA/CISA)
  • CIS Critical Security Controls
  • MITRE ATT&CK: Discovery
L
Likhil Chekuri
Application Security Engineer, Strobes
Likhil Chekuri is an AppSec engineer at Strobes who has run hundreds of web, mobile, and cloud penetration tests for regulated industries.
Tags
Network PentestingMisconfigurationDefense

Stop chasing vulnerabilities Start reducing exposure

See how Strobes AI agents validate and fix your most critical exposures automatically.

Book a Demo
Continue Reading

Related Posts

VoIP Penetration Testing and Reconnaissance Guide
Network Pentesting

VoIP Penetration Testing and Reconnaissance Guide

VoIP penetration testing finds the SIP enumeration, eavesdropping, and toll-fraud paths attackers use against phone systems. Here is the recon and exploitation workflow.

Oct 22, 20257 min
Wireless Penetration Testing Guide
Network PentestingPenetration Testing

Wireless Penetration Testing Guide

Wireless penetration testing finds the rogue APs, weak handshakes, and Evil Twin exposures attackers use to get onto your network. Here is the methodology and tooling.

Oct 7, 20257 min
Active Directory Penetration Testing Checklist
Network PentestingOffensive Security

Active Directory Penetration Testing Checklist

An Active Directory penetration testing checklist grouped by attack phase, from enumeration and Kerberoasting through ADCS abuse to domain dominance.

Sep 22, 20257 min