mirror of
https://github.com/d3vyce/PenTools.git
synced 2025-04-22 11:03:16 +02:00
Add ssh key generation options
This commit is contained in:
parent
82c2f91490
commit
92595c03a5
10
pentools.sh
10
pentools.sh
@ -200,6 +200,9 @@ PWD=$(pwd)
|
|||||||
read -p "${BLUE}Target [${YELLOW}$PWD${BLUE}]: ${YELLOW}" TARGET
|
read -p "${BLUE}Target [${YELLOW}$PWD${BLUE}]: ${YELLOW}" TARGET
|
||||||
TARGET=${TARGET:-$PWD}
|
TARGET=${TARGET:-$PWD}
|
||||||
|
|
||||||
|
read -p "${BLUE}Do you want to generate SSH key? (y/n) [${YELLOW}y${BLUE}]: ${YELLOW}" SSH_GEN
|
||||||
|
SSH_GEN=${SSH_GEN:-y}
|
||||||
|
|
||||||
case $CHOICE in
|
case $CHOICE in
|
||||||
1)
|
1)
|
||||||
wordlist
|
wordlist
|
||||||
@ -227,3 +230,10 @@ case $CHOICE in
|
|||||||
printf "${RED}[x] Select an option between 1 and 6"
|
printf "${RED}[x] Select an option between 1 and 6"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
if [ SSH_GEN -eq 'y' ]; then
|
||||||
|
printf ${GREEN}"[+] Creation of your ssh key pair...\n"
|
||||||
|
ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa >/dev/null 2>&1
|
||||||
|
printf "${ITALIC_LIGHT_CYAN}"
|
||||||
|
cat ~/.ssh/id_rsa.pub
|
||||||
|
fi
|
Loading…
x
Reference in New Issue
Block a user