FastHandle - IT Operations Examples

FastHandle is fast operation tools for infrastructure configurations and tests.

User Tools

Site Tools


Sidebar


Top     SiteMap

Manager Server

Target Server

$FHHOME/bin/xxx.sh | xxxx.exp













.

fhscripts:check:check_rootpass.exp.html



FastHandle Scripts

Expect to Check Root Passowrd after logging as a general user

How to use check_rootpass.exp

$ check_rootpass.exp  192.168.0.10  'PASSWORD'


check_rootpass.exp

$FHHOME/bin/check_rootpass.exp

#!/usr/bin/expect
#########################################################
#./check_rootpass.exp  $IP '$ROOTPASS'
#
#########################################################

set IP  [lindex $argv 0]
set ROOTPASS [lindex $argv 1]
set LOGINPASS PASSWORD


spawn ssh user01@$IP

expect "password: "
send "$LOGINPASS\r"

expect "$ "
send "LANG=C su -\r"

expect "assword: "
#sleep 1
send "$ROOTPASS\r"

expect "# "
send "exit\r"

expect "$ "
send "exit\r"

interact




fhscripts





FastHandle Scripts



fhscripts/check/check_rootpass.exp.html.txt ยท Last modified: 2018/03/29 00:05 by kurihara