Mac 下两步验证免密,免验证码登陆, 传输文件

出发点

公司的集群前段时间需要两步验证登陆,每次登陆以及传输文件都得拿起手机,看验证码,输入验证码,今天实在觉得这么「繁琐」的步骤无法忍受,就想去查一下有没有可以在桌面端获取验证码的方式,结果还真有:

https://www.cnblogs.com/jasondan/p/6508249.html

GitHub - stanzhai/GoldenPassport: A native implementation of Google Authenticator for Mac based on Swift

作者的想法和目的简直和我的一模一样,而且自己动手,丰衣足食,解决了问题,果然知识才是生产力啊。

既然有了现成的工具,我也直接优化我之前的脚本,实现即使有两步验证,也能无需输入密码验证码登陆以及传输文件的过程。脚本如下:

登陆

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/expect -f
set user xxxx # xxxx is your account,使用的时候要把注释的内容去掉,不然会报错, 下同
set host IP # your IP address
set password xxxx # xxxx is your passsword
set code [exec sh -c {curl -s "http://localhost:17304" |grep -Eo "\d{6}"}] # get the verfication code from the local host; 在 expect 脚本里边使用 shell 命令; grep 捕获变量;
set timeout -1

spawn ssh $user@$host
expect "*assword:*"
send "$password\r"
expect "*erification code:*"
send "$code\r"
interact
expect eof

传输文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/expect -f
set src_file [lindex $argv 0] # the file need scp
set dest_dir [lindex $argv 1] # the target directory
set user xxxx # xxxx is your account
set host IP # your IP address
set password xxxx # xxxx is your passsword
set code [exec sh -c {curl -s "http://localhost:17304" |grep -Eo "\d{6}"}]
set timeout -1

spawn scp -r $user@$host:$src_file $dest_dir
expect "*assword:"
send "$password\r"
expect "*erification code:*"
send "$code\r"
expect "100%"
expect eof

点击一下,完结撒花~

(✪ω✪)