• Home
  • Become a Hacker
    • Get Started
    • Hacker Mindset
    • Roadmap
    • Simple Setup – Hacker 101
    • Types of Hackers
    • Recommended Courses
  • Boot People Offline
  • Courses
    • All Hacking Courses
    • Cyber Security School
  • CTF
    • Beginners to Advanced Guide
    • Create your own CTF box
    • Field and Resources Guide
    • Platforms & Wargames
    • Tools Used for Solving CTF
    • Writeups
  • Dark Web
    • Beginners Guide
    • Darknet Markets
    • Darkweb 101 (Anonymity Guide)
    • Dark Web OSINT Tools
    • Hacking Forums
    • Latest News
    • Onion Links
  • Hacker Gadgets
  • Hacking Books
  • Tools Directory
Menu
  • Home
  • Become a Hacker
    • Get Started
    • Hacker Mindset
    • Roadmap
    • Simple Setup – Hacker 101
    • Types of Hackers
    • Recommended Courses
  • Boot People Offline
  • Courses
    • All Hacking Courses
    • Cyber Security School
  • CTF
    • Beginners to Advanced Guide
    • Create your own CTF box
    • Field and Resources Guide
    • Platforms & Wargames
    • Tools Used for Solving CTF
    • Writeups
  • Dark Web
    • Beginners Guide
    • Darknet Markets
    • Darkweb 101 (Anonymity Guide)
    • Dark Web OSINT Tools
    • Hacking Forums
    • Latest News
    • Onion Links
  • Hacker Gadgets
  • Hacking Books
  • Tools Directory
Search
Close
  • Home
  • 2016
  • May
  • 2
  • How To Setup VPN On Kali Linux For Anonymity

How To Setup VPN On Kali Linux For Anonymity

May 2, 2016July 7, 2019 Comments Off on How To Setup VPN On Kali Linux For Anonymity
how to setup vpn how to setup vpn in kali How To Setup VPN On Kali Linux For Anonymity kali vpn setup using vpn on kali

Virtual Private Networks (vpn) create an encrypted ‘tunnel’ between your computer and the host server, with the internet traffic going in and out of the host server. Your ISP or government can only see that you have connected to the VPN server and nothing else – your activities, IP addresses you have visited etc. are all completely hidden from them behind a minimum of 128-bit encryption, So in this tutorial you will be able to know how to setup free VPN service on Kali Linux and how possible is complete anonymity in cyber world.
However, the VPN server can see what you get up to on-line, which is why we feel it vital that a good VPN provider to keeps no logs. Anything less, and its users’ activities may be compromised (thus making the precaution of using a VPN in the first place redundant!).

Although setting up VPN does usually involve downloading and installing a VPN client, or otherwise configuring your computer or mobile device, the computing skills needed are minimal, and most providers supply detailed step-by-step setup guides in any case. One good thing is that once set up, all your internet activity, no matter which program you use, is now safely routed through the VPN.
The best vpns are those that keep no logs. The premise is that if the VPN provider receives a legal request from LE to provide details of who did what and when, they cannot point the finger at a particular user if they have no logs. This is the latest, most reliable (imo) list of such paid VPN providers: http://torrentfreak.com/which-vpn-services-take-your-anonymity-seriously-2014-edition-140315/

Why use VPN?

Here’s 11 reasons why you would want to use VPN services.

  • VPN provides Privacy and cloaks your IP address.
  • Use any network (public or private or free WiFi) with encryption
  • Login to your home or Work network from anywhere with confidence.
  • Bypass censorship and content monitoring.
  • Browse and bypass Firewall and censorship policy at work or Anywhere!
  • Access region restricted services from anywhere (i.e. Youtube videos, NetFlix or BBC Player etc.)
  • Transfer or receive files with privacy.
  • Hide your voice/VOIP calls.
  • Use Search Engines while hiding some of your identity.
  • Hide yourself
  • Cause you like to be anonymous.
Pros
  • Internet activity cannot be spied on by ISPs or governments
  • High levels of encryption (128-bit to 2048-bit)
  • All internet activity masked (once VPN set up on device)
Cons
  • More expensive than proxies
  • Can be a bit slow during peak times
  • If VPN provider keeps logs then these may be obtained by the authorities

Free VPN Services!

The notable negatives to VPN are that it is comparatively pricey, and the encryption process taxes the servers so that when in heavy use internet access through them can slow down noticeably. There are plenty of free vpn providers but i have not found a free VPN who publishes any details about the logs they keep and the circumstances under which they would hand those over to a third party.
Here i am giving you a demonstration of setting up a free vpn service on Kali Linux (Security KISS) but don’t expect complete anonymity from this free vpn service.

Let’s start the configuration.

Step 1: Enable VPN on Kali Linux

By default , vpn is not configured in Kali Linux. If you want to connect vpn in kali linux , first install pptp and network openvpn in Kali linux using apt-get install. for this login to Kali linux as root user and type the following command in terminal.

aptitude -r install network-manager-openvpn-gnome network-manager-pptp network-manager-pptp-gnome network-manager-strongswan network-manager-vpnc network-manager-vpnc-gnome

On some cases, you might have to restart network-manager and networking, so type the following command:

service network-manager restart

Step 2: Enable IP forwarding

Check whether IP forwarding is enabled in Linux:

cat /proc/sys/net/ipv4/ip_forward

It should return 0 or 1 (Normally it should return 1)

If it is zero (0) you need enable IP forwarding by:

echo 1 > /proc/sys/net/ipv4/ip_forward

and

gedit /etc/sysctl.conf

Now the sysctl.conf file will open up then edit the following line 26 and 27: net.ipv4.ip_forward = 1
from
 
# Uncomment the next line to enable packet forwarding for IPv4
#net.ipv4.ip_forward=1
to
# Uncomment the next line to enable packet forwarding for IPv4
net.ipv4.ip_forward=1
and save.

Step 3: Register on Security KISS (vpn provider)

After successfully done the above two steps now time to register on Security KISS by clicking the following link:

https://www.securitykiss.com/panel/createaccount/index.php

Type your email id then click on create button.

Open your mail and login with given client ID and password to Client Area.

Download the configuration bundle from Client area (Use the download link  generated in SecurityKISS Client Area).

Unzip the files.

Now you have 4 files named client.crt, ca.crt, client.key and README.txt.
View the README.txt file to find the list of SecurityKISS gateways (In this tutorial i am gonna use the Miami gateway,you can see i am highlighted that in the following screenshot )

Step 4: Configure OpenVPN connection

In the network connections find ‘Configure VPN‘

Select VPN tab and click on Add button.

Choose OpenVPN connection type and press Create button.

Now an editing window will open up, Configure the following information:
  1. Enter connection name indicating server location, protocol and port.
  2. In the Gateway field enter one of the IP address from the list you found in README.txt.
  3. Authentication type should be ‘Certificates (TLS)‘.
  4. Click on User Certificate and navigate to unzipped config file client.crt.
  5. Click on CA Certificate and navigate to unzipped config file ca.crt.
  6. Click on Private Key and navigate to unzipped config file client.key.
  7. Put in your password for your account.
Now click on the Advanced button.

Tick ‘Use LZO data compression‘ and ‘Use custom gateway port‘ check boxes.

(Enter port number according to the selected server from README.txt.)
If the server you selected from the list is marked as TCP you also need to tick ‘Use a TCP connection‘ and click ok to save settings.

Mark Available to all users then click on save button.

Now you can see the new connection with the gateway name in the network connections manager window (see the following screenshot of mine).

Step 5: Test the tunneled connection

Connect from the VPN connections.
Go to network manager and click to VPN Connections and connect.

You can verify if your IP address has changed by opening their geographical-location website:http://www.securitykiss.com/locate

Successfully connected to the free VPN.

Post navigation

New BlackArch Linux version released
Whitewidow – SQL Vulnerability Scanner

Related Articles

Is your VPN Legit or Shit?

- VPN
May 4, 2019May 19, 2019

Most Secure VPN’s used by Hackers

- VPN
May 2, 2019August 14, 2019

Kalitorify – Transparent Proxy through TOR

- Anonymity, TOR
May 1, 2019July 27, 2019
hacker gadgets
hacker phone covers

Recent Posts

Samba Issues Security Updates to Patch Three Vulnerabilities

Samba Issues Security Updates to Patch Three Vulnerabilities

March 31, 2023
New APT Exploits Zimbra Vulnerability to Target European Military and Diplomatic Entities

New APT Exploits Zimbra Vulnerability to Target European Military and Diplomatic Entities

March 30, 2023
MSI Dump - A Tool That Analyzes Malicious MSI Installation Packages, Extracts Files, Streams, Binary Data And Incorporates YARA Scanner

MSI Dump – A Tool That Analyzes Malicious MSI Installation Packages, Extracts Files, Streams, Binary Data And Incorporates YARA Scanner

March 30, 2023
aerleon: Generate firewall configs for multiple firewall platforms

aerleon: Generate firewall configs for multiple firewall platforms

March 30, 2023
hashtopolis v0.13.1 released: A Hashcat wrapper for distributed hashcracking

hashtopolis v0.13.1 released: A Hashcat wrapper for distributed hashcracking

March 30, 2023
Artemis: modular web reconnaissance tool and vulnerability scanner

Artemis: modular web reconnaissance tool and vulnerability scanner

March 29, 2023

Social Media Hacking

SocialPath – Track users across Social Media Platforms

SocialPath – Track users across Social Media Platforms

- Social Media Hacking
October 16, 2019October 16, 2019

SocialPath is a django application for gathering social media intelligence on specific username. It checks for Twitter, Instagram, Facebook, Reddit...

SocialScan – Check Email Address and Username Availability on Online Platforms

SocialScan – Check Email Address and Username Availability on Online Platforms

June 17, 2019
Shellphish – Phishing Tool For 18 Social Media Apps

Shellphish – Phishing Tool For 18 Social Media Apps

June 10, 2019July 27, 2019
WhatsApp Hacking using QRLJacking

WhatsApp Hacking using QRLJacking

May 2, 2019May 19, 2019
How to Hack any Facebook Account with Z-Shadow

How to Hack any Facebook Account with Z-Shadow

April 26, 2019June 29, 2020
hacker buffs

About Us

Haxf4rall is a collective, a good starting point and provides a variety of quality material for cyber security professionals.

Join Our Community!

Please wait...
Get the latest News and Hacking Tools delivered to your inbox.
Don't Worry ! You will not be spammed

Active Members

Submit a Tool

Hackers Handbook 2018


Grab your copy here

ABOUT US

Haxf4rall is a collective, a good starting point and provides a variety of quality material for cyber security professionals.

Our primary focus revolves around the latest tools released in the Infosec community and provide a platform for developers to showcase their skillset and current projects.

COMPANY
  • Contact Us
  • Disclaimer
  • Hacker Gadgets
  • LANC Remastered
  • PCPS IP Puller
  • Privacy Policy
  • Sitemap
  • Submit your Tool
Menu
  • Contact Us
  • Disclaimer
  • Hacker Gadgets
  • LANC Remastered
  • PCPS IP Puller
  • Privacy Policy
  • Sitemap
  • Submit your Tool
Live Chat
RESOURCES
  • Attack Process
  • Become a Hacker
  • Career Pathways
  • Dark Web
  • Hacking Books
  • Practice Your Skills
  • Recommended Courses
  • Simple Setup – Hacker 101
Menu
  • Attack Process
  • Become a Hacker
  • Career Pathways
  • Dark Web
  • Hacking Books
  • Practice Your Skills
  • Recommended Courses
  • Simple Setup – Hacker 101
Get Started
TOOLBOX
  • Anonymity
  • Bruteforce
  • DoS – Denial of Service
  • Information Gathering
  • Phishing
  • SQL Injection
  • Vulnerability Scanners
  • Wifi Hacking
Menu
  • Anonymity
  • Bruteforce
  • DoS – Denial of Service
  • Information Gathering
  • Phishing
  • SQL Injection
  • Vulnerability Scanners
  • Wifi Hacking
Tools Directory

2014 – 2020 | Haxf4rall.com               Stay Connected:

Facebook Twitter Google-plus Wordpress
Please wait...

Join Our Community

Subscribe now and get your free HACKERS HANDBOOK

Don't Worry ! You will not be spammed
SIGN UP FOR NEWSLETTER NOW