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
  • Quick Agentic Pentest
  • 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 and SNMP still the top finding?
  • How do protocol and signing misconfigurations get exploited?
  • A flat network turns one foothold into the whole estate
  • What exposed services should you hunt for first?
  • How do these misconfigurations chain into a breach?
  • Frequently asked questions
  • Sources and references

Authors

L
Likhil Chekuri

Share

Table of Contents

  • What are network security misconfigurations?
  • Why are default credentials and SNMP still the top finding?
  • How do protocol and signing misconfigurations get exploited?
  • A flat network turns one foothold into the whole estate
  • What exposed services should you hunt for first?
  • How do these misconfigurations chain into a breach?
  • Frequently asked questions
  • Sources and references

Authors

L
Likhil Chekuri

Share

TL;DR
  • ✓Misconfigurations, not novel exploits, drive the majority of internal compromises a pentester reports, and Verizon's DBIR keeps listing the same boring root causes year after year.
  • ✓The repeat offenders are default credentials, default SNMP communities, disabled SMB signing, LLMNR/NBT-NS enabled, and flat networks with no real segmentation.
  • ✓Exposed management planes (IPMI/BMC on 623, etcd on 2379, kubelet on 10250, switch panels) hand attackers Tier 0 control with little effort.
  • ✓These issues surface with ordinary recon tooling, nmap, NetExec, snmpwalk, Responder, not a special scanner, but they need human judgment to prioritize.
  • ✓Fixing five defaults (creds, SNMP, SMB signing, LLMNR, segmentation) breaks nearly every internal attack chain, and most are GPO-level changes.

Verizon's Data Breach Investigations Report has, for years, tied a large and stubborn share of breaches to misconfiguration and stolen-or-default credentials rather than novel exploits. The pattern on internal engagements matches exactly: the domain falls because a switch still uses admin/admin, SNMP answers to the community string public, or a flat network lets one compromised laptop reach the domain controllers. There is rarely a zero-day in the story.

This post catalogs the network security misconfigurations testers find on nearly every internal engagement, shows the actual exploit output for the worst of them, and gives the config-level fix for each. Think of it as the defender's counterpart to our internal network penetration testing guide and external network penetration testing checklist.

Table of contents
  1. What are network security misconfigurations?
  2. Why are default credentials and SNMP still the top finding?
  3. How do protocol and signing misconfigurations get exploited?
  4. A flat network turns one foothold into the whole estate
  5. What exposed services should you hunt for first?
  6. How do these misconfigurations chain into a breach?

What are network security misconfigurations?

Network security misconfigurations are settings, defaults, and architectural choices that weaken a network without being a software vulnerability. There is no CVE to patch; the device works exactly as configured, and that configuration is the problem, which is why a scanner that only reports missing patches walks right past them.

They span every layer: default or weak credentials, 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 scanning alone.

The NSA and CISA codified the pattern in their joint advisory on the top ten cybersecurity misconfigurations, and it reads like a pentest report: default configurations, poor credential hygiene, weak segmentation, insufficient access controls, and unrestricted code execution among them. The things government red teams find inside federal networks are the same things a commercial tester finds inside yours, because the root cause, compatibility-first defaults that never got hardened, is universal.

Misconfiguration by the numbers
10
Top misconfigurations in the NSA/CISA joint advisory
623
IPMI/BMC port; default creds = full host control
3
Commands from LLMNR poison to a SAM dump
0
CVEs in the typical jack-to-Domain-Admin chain

Why are default credentials and SNMP still the top finding?

Default credentials remain the most common finding because devices ship with them and busy teams never change them. Switches, routers, printers, iLO/iDRAC/IPMI controllers, IP cameras, and PBXs all arrive with documented defaults, and lists like SecLists make checking trivial. A tester sprays known defaults with NetExec, and the hit rate is depressingly high.

SNMP is the close runner-up, and a single read-only community often hands over the whole network map. Watch what one snmpwalk against public returns.

$ snmpwalk -v2c -c public 10.0.0.1
SNMPv2-MIB::sysDescr.0 = Cisco IOS Software, C2960 ...
IP-FORWARD-MIB::ipCidrRouteDest = 10.20.0.0   <- full routing table, the VLAN map
IP-FORWARD-MIB::ipCidrRouteDest = 10.30.0.0   <- management subnet revealed
$ onesixtyone -c community.txt -i hosts.txt
10.0.0.1 [public] Cisco IOS ...   <- community guessed, no auth at all

On one engagement, that single public community on a core switch handed over the entire VLAN map and the management subnet, all the routing context an attacker needs before touching anything noisier. The fix is procedural and config-level: a hardening baseline that mandates credential changes at provisioning, and SNMPv3 with auth/priv so read-only community strings stop existing.

How do protocol and signing misconfigurations get exploited?

Insecure protocol settings turn ordinary 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. Combined with LLMNR and NBT-NS enabled (the Windows default), Responder poisons name resolution and feeds the relay. The whole chain is three commands and no exploit.

$ nxc smb 10.0.0.0/24 --gen-relay-list targets.txt
SMB  10.0.0.21  445  FILE01  signing:False   <- relay target written to targets.txt
$ responder -I eth0 -wd
[SMB] NTLMv2 Hash : CORP\svc_scan::CORP:1122...   <- victim auth captured
$ ntlmrelayx.py -tf targets.txt -smb2support --dump
[*] Authenticating against smb://10.0.0.21 SUCCEED
Administrator:500:aad3b4...:31d6cfe0...:::   <- local SAM dumped, no password cracked

The same theme repeats across protocols: cleartext Telnet and FTP where SSH/SFTP belong, unencrypted LDAP instead of LDAPS, missing 802.1X so anyone with a jack gets a DHCP lease, and unencrypted SIP/RTP on the voice network. Each is a compatibility-first default. 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.

Network misconfiguration findings excerpt
FindingSeverity (CVSS)EvidenceRemediation
SMB signing not requiredCritical (9.0)ntlmrelayx dumped local SAM from FILE01 (signing:False)Enforce SMB signing (always) via GPO
LLMNR/NBT-NS enabledHigh (8.1)Responder captured CORP\svc_scan NetNTLMv2 hashDisable multicast name resolution + NetBIOS via GPO
SNMP public community on core switchHigh (7.5)snmpwalk dumped full routing table and mgmt subnetSNMPv3 auth/priv; remove v1/v2c communities
Flat network, no real segmentationHigh (8.0)User-VLAN host reached iDRAC on the mgmt /24Segment user/server/mgmt VLANs with ACLs
Default credentials on BMC/IPMICritical (9.8)admin/admin on iDRAC allowed virtual-media mountUnique creds + MFA; bastion-only access

A flat network turns one foothold into the whole estate

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

Testers confirm the gap rather than assume it, sweeping across VLAN boundaries to see what actually answers. This exposes whether segmentation lives in a diagram or in the firewall.

$ nmap -sn 10.30.0.0/24       # from a user-VLAN host, can we even see the mgmt range?
Nmap scan report for idrac-esx01.corp (10.30.0.40)   <- mgmt host answered = flat in practice
Nmap scan report for sw-core01.corp (10.30.0.1)
Host is up (0.0011s latency).

If a user-VLAN host can reach the management range, the network is flat regardless of the VLAN tags, and a common tester mistake is trusting the labels instead of testing reachability end to end. Proper segmentation isolates user, server, and management VLANs, restricts traffic between them with ACLs, and puts a jump host in front of administrative planes, a core control in NIST and the CIS Controls that 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 is a control plane. An unauthenticated kubelet on 10250 lets you exec into running pods, and an IPMI controller with default creds is game over for the host behind it, since the BMC can mount media, reset the OS password, or power-cycle the box independent of any OS-level control. The fix is to keep management interfaces off general-access networks entirely, require strong unique credentials and MFA, and restrict access to a bastion. Treat the BMC and hypervisor planes as Tier 0, on par with domain controllers, because whoever owns them owns every workload above them regardless of OS hardening. Pair that isolation with a recurring discovery scan, since the real failure mode is not one missed device but the steady stream of new ones nobody added to the management VLAN. 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.

How do these misconfigurations chain into a breach?

Individually each misconfiguration looks minor; chained, they walk an attacker from a network jack to Domain Admin without a single exploit. This is the sequence on most internal engagements, and every link is a default someone forgot to change.

  1. Poison and relay: LLMNR enabled plus a host without SMB signing lets Responder capture an auth and ntlmrelayx forward it to a local-admin SMB session.
  2. Reuse: no LAPS means that local admin password is reused fleet-wide, so the dumped hash opens dozens of hosts via pass-the-hash.
  3. Map: a flat network lets the tester reach the domain controllers and a help-desk workstation whose cached user has dangerous ACLs, which BloodHound graphs in seconds.
  4. Escalate: abusing that ACL path leads to DCSync and the krbtgt hash, full domain control.

Not one step needed a CVE. That is the uncomfortable point of this topic and why the same chain shows up in our internal network penetration testing guide and the Active Directory penetration testing checklist. Fixing five defaults breaks every link.

How five defaults chain to Domain Admin
1
Poison + relay
LLMNR + no SMB signing: Responder + ntlmrelayx land local admin.
2
Reuse
No LAPS: one local-admin hash opens the fleet via pass-the-hash.
3
Map
Flat network lets BloodHound reach a DC and an ACL-rich user.
4
Escalate
Abuse the ACL path to DCSync the krbtgt hash.
5
Dominate
Forge tickets; full domain control, no CVE used.

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 entirely.
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 on the same engagement.
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 network map. 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, and you should test reachability rather than trust the VLAN labels.
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, and increasingly continuous attack-path validation, remains essential for misconfiguration discovery.

Sources and references

  • Verizon Data Breach Investigations Report
  • CISA: Top Cyber Misconfigurations (NSA/CISA)
  • CIS Critical Security Controls
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

Toll fraud cost businesses billions last year, and most of it traces to a misconfigured PBX. Here is how VoIP penetration testing finds the SIP, RTP, and dial-plan holes before an attacker does.

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

Wireless Penetration Testing Guide

A weak Wi-Fi key cracked from the parking lot can undo every firewall you own. Here is the wireless penetration testing workflow, with real hcxdumptool and hashcat output and the EAP-TLS fix that ends it.

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

Active Directory Penetration Testing Checklist

Most domains fall without a single CVE. This Active Directory penetration testing checklist walks the phases with real Kerberoast and Certipy output, a findings table, and the controls that actually break each path.

Sep 22, 20257 min