Wednesday, September 11, 2024

nmap: smb enumeration

Enumeration, in the context of cybersecurity, refers to the process of discovering information about a target system or network. This can include identifying users, groups, shares, services, and other resources.

Therefore, SMB enumeration would likely involve using tools and techniques to gather information about SMB shares and resources on a target system. This information could then be used by an attacker to identify potential vulnerabilities or targets for further exploitation.

 nmap --script smb-vuln* -p 139,445 10.1.1.0/24 -Pn


smbclient -L <target-ip>


smbclient \\\\<target-ip>\ADMIN$

No comments:

Post a Comment