📄 ipc.exp
字号:
## Test operations on IPC$ share## Initialisationload_lib env-single.expload_lib smbclient.expset timeout 10# Spawn a smbclientif {![spawn_smbclient //$server/ipc\$ -U $user]} { perror "error spawning smbclient" return -1}## Start performing tests#global smb_promptdo_smbclient "lcd /tmp\r" "lcd /tmp"do_smbclient "!touch test.out\r" "touch test.out"foreach { op } { "dir\r" "put test.out\r" "get test.out\r" \ "get /etc/passwd\r" "mkdir foo\r" "print test.out\r" } { set action "doing $op" set output [do_smbclient $op $action] if {![regexp "ERR" $output]} { fail $action puts $output } else { pass $action }}# Clean upfile delete test.out
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -