Samba

smbclient 沒有進入 smb shell

  • October 20, 2021

我想訪問我們 Intranet 上的 SMB 共享。

  • 當我執行
smbclient -L //intranet.host/ -U myuser

我可以輸入我的密碼並獲取所有共享的列表。

  • 當我想進入 smb shell 時
smbclient //intranet.host/ -U myuser

我沒有被要求輸入密碼,並且命令返回時沒有任何輸出。

我在這裡想念什麼?

您無法訪問 shell 以列出共享。您只能在實際連接到共享時訪問 shell。

這將正常工作:

root@server /root $ smbclient //fqdn.local/ExistingShareName -U domain\\user
Enter domain\user's password:
Try "help" to get a list of possible commands.
smb: \>

這不會:

root@server /root $ smbclient //fqdn.local/ -U domain\\user
(returns errorcode 1)

引用自:https://unix.stackexchange.com/questions/673991