#BTCPrediction # System Update and Tool Installation

apt update && apt upgrade -y

apt install hydra nmap openssh -y

# Set password for the root user

echo "Setting password for the root user:"

passwd

# Start SSH service

/etc/init.d/ssh start

# Create a dummy password file

echo -e "1234\nadmin\npassword\ntest" > passwords.txt

# Test hydra on your device (localhost)

hydra -l root -P passwords.txt ssh://127.0.0.1