shell-scripte-code/shellinabox_sshwrapper.sh

27 lines
769 B
Bash
Raw Normal View History

2016-12-15 14:37:59 +01:00
#!/bin/bash
2016-12-15 15:37:51 +01:00
# 
2016-12-15 14:37:59 +01:00
read -p "SSH remote host (hostname or ip address): " host;
#
read -p "If a puplic_key authentification?: N or y: " puplic;
#
2016-12-15 15:38:19 +01:00
read -p "SSH remote port (22): " port;
2016-12-15 14:37:59 +01:00
#
read -p "SSH remote username: " username;
#
if [ "$puplic" == "y" ];
then
read -p "Why it the public_key?: " key;
echo $key > ~/.ssh/id_rsa.pub;
rm ~/.ssh/id_rsa;
echo "Give youre id her ein and when youre ready give finish ein.";
while [ "$id" != "finish" ];
do
read -p "Why it the id_rsa key?: " id;
echo $id >> ~/.ssh/id_rsa;
done
exec ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p $port $username@$host;
else
exec ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -p $port $username@$host;
fi