Go 调用交互式shell
【摘要】 本文的代码已上传到github交互式shell常用在输入密码的场景,为了防止密码泄露在cmdline中被ps -ef读取举个🌰#!/bin/bashread -s -p "Enter Password: " pwdecho -e "\nYour password is: " $pwdgo调用交互式shell代码样例如下func TestCallInteractiveShell(t *te...
本文的代码已上传到github
交互式shell常用在输入密码的场景,为了防止密码泄露在cmdline
中被ps -ef
读取
举个🌰
#!/bin/bash
read -s -p "Enter Password: " pwd
echo -e "\nYour password is: " $pwd
go调用交互式shell代码样例如下
func TestCallInteractiveShell(t *testing.T) {
dir, err := os.Getwd()
if err != nil {
panic(err)
}
cmd := exec.Command("/bin/bash", dir+"/interactive_shell.sh")
var stdout, stderr bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stderr
buffer := bytes.Buffer{}
buffer.Write([]byte("ZhangJian"))
cmd.Stdin = &buffer
err = cmd.Run()
if err != nil {
panic(err)
}
outStr, errStr := string(stdout.Bytes()), string(stderr.Bytes())
fmt.Println("output is ", outStr)
fmt.Println("err output is ", errStr)
fmt.Println("Execute Over")
}
输出结果
=== RUN TestCallInteractiveShell
output is Your password is: ZhangJian
err output is
Execute Over
--- PASS: TestCallInteractiveShell (0.00s)
PASS
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)