Path: blob/master/SMSend-Anon-SMS-Sender/setup.sh
1291 views
#!/bin/bash1echo "Installing necessary libraries..."2pip install requests stem34read -p "Do you want to configure or reconfigure the auth.txt file? (y/n) " user_input56if [[ $user_input == "y" || $user_input == "yes" ]]; then7read -p "Enter your OpenVPN/VPN username: " vpn_username8read -sp "Enter your VPN config password: " vpn_password9echo1011echo "Updating auth.txt file..."12> auth.txt13echo "$vpn_username" > auth.txt14echo "$vpn_password" >> auth.txt1516echo "auth.txt has been updated."17else18echo "No changes made to auth.txt."19fi2021echo "Running smsend.py..."22python smsend.py || { echo "Failed to run smsend.py"; exit 1; }2324echo "Setup completed successfully."252627