SMB Guest Access Detection
Guest access is different from a null session. A host can block anonymous RPC calls and still map unauthenticated users into a guest context for share access. When that happens, you can end up with direct file exposure without valid credentials, which is the part that matters. smbclient and SMBMap both support unauthenticated share testing.
Start with the fast checks.
If the host lists shares without credentials, test whether the access is actually usable.
A successful dir means the share is not just visible. It is readable. That can expose documents, installers, scripts, exports, and operational data without any valid account.
Use SMBMap to separate simple visibility from real permissions.
If the host only leaks names and denies file access, the issue is weaker and you can move on. If read access works, keep the exact share names and review them for sensitive content next. If write access works, the issue gets stronger because guest-backed file placement can become tampering or user-triggered execution later, depending on how that share is used.
References
-
Unauthenticated share listing and file operations
-
Share permission and content review
-
SMB Null Session Enumerationhackindex.io/services/smb/enumeration/smb-null-session-enumeration (opens in new tab)
Existing related enumeration page
-
SMB Share Enumerationhackindex.io/services/smb/enumeration/smb-share-enumeration (opens in new tab)
Existing related enumeration page
Was this helpful?
Your feedback helps improve this page.