Check for anonymous SMB

  • smbclient -L <ip address>

-L list services

  • This command is useful for finding open smb shares

  • The IPC$ share is also known as a null session connection. By using this session, Windows/Linux (in this case) lets anonymous users perform certain activities, such as enumerating the names of domain accounts and network shares.

  • This special share exists to allow for subsequent named pipe connections to the server. The serverโ€™s named pipes are created by built-in operating system components and by any applications or services that are installed on the system. When the named pipe is being created, the process specifies the security that is associated with the pipe, and then makes sure that access is only granted to the specified users or groups.

Last updated