Skip to content

MikaYusub/FuckRKN1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

English | Русский

FuckRKN1: Free VPN for free humans

We are for freedom of speech and against any kind of censorship.

We are making a non-commercial VPN-service that does not collect any data.

Today, freedom of speech is especially vulnerable. Independent media are banned, people are brainwashed with propaganda, VPN services are blocked, and it is dangerous to express one's position and opinion. This is the reason why we took on this project. It is non-commercial, no profit is pursued either. We are rather small, but yet, we have a great potential.

You can support us with donations or any other contribution to improve the service. Pulling requests and creating issues also helps us a lot.

Sponsors

Be the first! ;)

IPSec

Configuration files are based on https://github.com/hwdsl2/setup-ipsec-vpn.git

Installation

Windows 7, 8, 10 and 11

Configuration files:

NOTE: Server domain name: lt.fuckrkn1.xyz

  1. Download vpnclient.p12 file to your device.
  2. Download ikev2_config_import.cmd file and put it in the same folder as vpnclient.p12 file.
  3. Right-click on the file ikev2_config_import.cmd, select Properties. Click on Unblock at the bottom, then click on OK.
  4. Right-click on the file ikev2_config_import.cmd, select Run as administrator.
  5. Choose the VPN client name (or just press Enter, it will choose the file's name)
  6. Enter domain name of the server - lt.fuckrkn1.xyz
  7. Choose the VPN connection name (or just press Enter, script will choose default name)
  8. Press any key to finish script. To connect to the VPN: Right-click on the wireless/network icon in your system tray, open settings, go to the VPN, select the new entry, and click Connect.
windows-screencast.mov

OS X (macOS)

Configuration file: vpnclient.mobileconfig

  1. Download the vpnclient.mobileconfig file to your device.
  2. Double-click it, you'll get a OS notification.
  3. Open  → System Preferences → Profiles and install the profile.
  4. Open  → System Preferences → Network and connect.
macos-screencast.mov

iOS (iPhone/iPad)

Configuration file: vpnclient.mobileconfig

  1. Download the vpnclient.mobileconfig file to your device.
  2. Move the file to the "On my iPhone" folder.
  3. Open Settings and install the profile.
  4. Go to Settings > VPN and connect.
ios2.mov

Android

Configuration file: vpnclient.sswan

  1. Download strongSwan VPN Client from Google Play.
  2. Download vpnclient.sswan file to your device.
  3. Press the button in the top right corner > Import VPN profile > Choose the file.
  4. Choose the VPN certificate.
  5. Connect to the VPN.
andorid-screencast.mov

Linux

Good luck with it!

Via Network Manager

To configure your Linux computer to connect to IKEv2 as a VPN client, first install the strongSwan plugin for NetworkManager:

# Ubuntu and Debian
sudo apt-get update
sudo apt-get install network-manager-strongswan

# Gentoo Linux
sudo emerge --sync
sudo emerge net-vpn/networkmanager-strongswan

# Arch Linux
sudo pacman -Syu  # upgrade all packages
sudo pacman -S networkmanager-strongswan

# Fedora
sudo yum install NetworkManager-strongswan-gnome

# CentOS
sudo yum install epel-release
sudo yum --enablerepo=epel install NetworkManager-strongswan-gnome

Next, securely transfer the generated .p12 file from the repository to your Linux computer. After that, extract the CA certificate, client certificate and private key. Replace vpnclient.p12 in the example below with the name of your .p12 file.

# Example: Extract CA certificate, client certificate and private key.
#          You may delete the .p12 file when finished.
# Note: You may need to enter the import password, which can be found
#       in the output of the IKEv2 helper script. If the output does not
#       contain an import password, press Enter to continue.
openssl pkcs12 -in vpnclient.p12 -cacerts -nokeys -out ikev2vpnca.cer
openssl pkcs12 -in vpnclient.p12 -clcerts -nokeys -out vpnclient.cer
openssl pkcs12 -in vpnclient.p12 -nocerts -nodes  -out vpnclient.key
rm vpnclient.p12

# (Important) Protect certificate and private key files
# Note: This step is optional, but strongly recommended.
sudo chown root.root ikev2vpnca.cer vpnclient.cer vpnclient.key
sudo chmod 600 ikev2vpnca.cer vpnclient.cer vpnclient.key

You can then set up and enable the VPN connection:

  1. Go to Settings -> Network -> VPN. Click the + button.
  2. Select IPsec/IKEv2 (strongswan).
  3. Enter anything you like in the Name field.
  4. In the Gateway (Server) section, enter Your VPN Server IP (or DNS name) for the Address. / you can find it here
  5. Select the ikev2vpnca.cer file for the Certificate.
  6. In the Client section, select Certificate(/private key) in the Authentication drop-down menu.
  7. Select Certificate/private key in the Certificate drop-down menu (if exists).
  8. Select the vpnclient.cer file for the Certificate (file).
  9. Select the vpnclient.key file for the Private key.
  10. In the Options section, check the Request an inner IP address checkbox.
  11. In the Cipher proposals (Algorithms) section, check the Enable custom proposals checkbox.
  12. Leave the IKE field blank.
  13. Enter aes128gcm16 in the ESP field.
  14. Click Add to save the VPN connection information.
  15. Turn the VPN switch ON.

Oculus VR

  1. In order to install applications, you need to activate developer mode on oq2 (see activation guide here). After this step you can install third-party applications (i.e. sideloading). Then you need to transfer vpnclient.sswan to your device (the process of installation is the same as on Android). This can be done via internal browser or by using adb. Download the file to your PC, then push it to the device: adb push vpnclient.sswan /sdcard/

  2. The next step is strong swan installation. Download apk from here and install it with the next command: adb install -g -r strongSwan-2.3.3.apk

Unfortunately, the built-in file manager is quite truncated, so when you click on import vpn profile nothing will happen (that’s why strong swan is installed via adb). Therefore, a couple of additional steps need to be taken.

  1. Download any decent file manager (I personally use Mixplorer) and install it with the command: adb install -g -r mixplorer.apk

  2. Put on your VR headset and repeat the remaining steps as when installing on android (see above). Now when you click on import VPN profile Mixplorer will be used to navigate and select a file.

About

FuckRKN1: freedom of speech and information

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 94.8%
  • Batchfile 5.2%