This commit is contained in:
Simon Rieger 2017-01-11 13:45:10 +01:00 committed by GitHub
parent 456303fce5
commit 08d6a40b85
2 changed files with 35 additions and 0 deletions

9
shellinabox.service Normal file
View file

@ -0,0 +1,9 @@
[Unit]
Description=shellinabox
[Service]
Type=oneshot
ExecStart=/opt/shellinabox/shellinaboxd --cert=/tmp/ --service=/:webssh:webssh:HOME:'/home/webssh/shellinabox_sshwrapper.sh'
[Install]
WantedBy=multi-user.target

26
shellinabox_sshwrapper.sh Normal file
View file

@ -0,0 +1,26 @@
#!/bin/bash
# 
read -p "SSH remote host (hostname or ip address): " host;
#
read -p "If a puplic_key authentification?: N or y: " puplic;
#
read -p "SSH remote port (22): " port;
#
read -p "SSH remote username: " username;
#
if [ "$puplic" == "y" ];
then
read -p "How is your public_key?: " key;
echo $key > ~/.ssh/id_rsa.pub;
rm ~/.ssh/id_rsa;
echo "Enter your private id here and press the enter key for a new line and when you are done confirm with finish !!!";
while [ "$id" != "finish" ];
do
read -p "How is your 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