mirror of
https://github.com/samba-team/samba.git
synced 2025-03-20 22:50:26 +03:00
traffic_packets: replace share_name from netlogon to IPC$ for packet_srvsvc_16
Sharename list for Windows: Sharename Type Comment --------- ---- ------- ADMIN$ Disk Remote Admin C$ Disk Default share IPC$ IPC Remote IPC For Samba: Sharename Type Comment --------- ---- ------- netlogon Disk sysvol Disk IPC$ IPC IPC Service While test packet_srvsvc_16 with share_name `netlogon`, it passed Samba, and got a WERR_NERR_NETNAMENOTFOUND error for Windows. Change share name to `IPC$` so Samba and Windows have it in common. Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
parent
51333c1538
commit
14af041c13
@ -928,7 +928,7 @@ def packet_srvsvc_16(packet, conversation, context):
|
||||
# NetShareGetInfo
|
||||
s = context.get_srvsvc_connection()
|
||||
server_unc = "\\\\" + context.server
|
||||
share_name = "netlogon"
|
||||
share_name = "IPC$"
|
||||
level = 1
|
||||
s.NetShareGetInfo(server_unc, share_name, level)
|
||||
return True
|
||||
|
Loading…
x
Reference in New Issue
Block a user