码迷,mamicode.com
首页 > 其他好文 > 详细

expect

时间:2015-12-10 13:26:10      阅读:350      评论:0      收藏:0      [点我收藏+]

标签:

http://blog.csdn.net/tantexian/article/details/45887857

http://stackoverflow.com/questions/19403360/how-to-use-expect-to-copy-a-public-key-to-a-host

 

 

Under normal conditions SSH toolchain asks the password from terminal, not from stdin. You can provide custom SSH_ASKPASS program to push your password with it.

Create a simple script askpass.sh:

#!/bin/sh
echo $PASSWORD

then configure it to be used in ssh:

chmod a+x askpass.sh
export SSH_ASKPASS=askpass.sh

finally run ssh-copy-id (without expect):

export DISPLAY=:0
PASSWORD=mySecurePassword setsid ssh-copy-id -o StrictHostKeyChecking=no hishost.thatwas.secure.com

setsid detaches from terminal (ssh will then panic and look for askpass program) DISPLAY is also checked by ssh (it thinks your askpass is a GUI)

Note that there might be hidden security vulnerabilities with this approach.

expect

标签:

原文地址:http://www.cnblogs.com/jvava/p/5035502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!