3 Star 4 Fork 4

Dark/linux基线检查

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sh.exp 525 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dark 提交于 2019-12-17 15:56 . linux baseline check first commit
#!/usr/bin/expect
set ipaddr [lindex $argv 0]
set port [lindex $argv 1]
set username [lindex $argv 2]
set userpasswd [lindex $argv 3]
set rootpasswd [lindex $argv 4]
set timeout 10
spawn ssh $username@$ipaddr -p $port
expect {
"yse/no" {send "yes\r";exp_continue}
"*password*" {send "$userpasswd\r";exp_continue}
"*from*" {send "su - root\r"}
}
expect "Password"
send "$rootpasswd\r"
expect "*]#"
send "chmod 777 /tmp/buying_linuxcheck.sh\r"
send "sh /tmp/buying_linuxcheck.sh\r"
send "exit\r"
send "exit\r"
interact
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/helpit768/linux_baseline_check.git
git@gitee.com:helpit768/linux_baseline_check.git
helpit768
linux_baseline_check
linux基线检查
master

搜索帮助