Oracle Linux/Obfuscation
From r00tedvw.com wiki
(Difference between revisions)
Line 1: | Line 1: | ||
[[Oracle_Linux/Obfuscation|Obfuscation]] | [[Oracle_Linux/Obfuscation|Obfuscation]] | ||
+ | |||
+ | =OpenVPN with ProtonVPN= | ||
+ | Go to [protonvpn.com protonvpn.com], create an account, select the free plan, goto downloads and select linux, tcp, and the free server configs.<br> | ||
+ | Download one of the configuration files and share it with your server (scp).<br> | ||
+ | Create a file with the username and password on first two lines. | ||
+ | <nowiki>~$ printf "$USERNAME\n$PASSWORD" > ~/login.conf</nowiki> | ||
+ | Connect to the VPN | ||
+ | <nowiki>~$ openvpn --auth-user-pass login.conf --config ./nl-free-01.protonvpn.com.tcp.ovpn</nowiki> |
Revision as of 21:13, 21 April 2021
Obfuscation
OpenVPN with ProtonVPN
Go to [protonvpn.com protonvpn.com], create an account, select the free plan, goto downloads and select linux, tcp, and the free server configs.
Download one of the configuration files and share it with your server (scp).
Create a file with the username and password on first two lines.
~$ printf "$USERNAME\n$PASSWORD" > ~/login.conf
Connect to the VPN
~$ openvpn --auth-user-pass login.conf --config ./nl-free-01.protonvpn.com.tcp.ovpn