IP BURGER - Kill Switch / DNS Leakage? - eBay Suspended & PayPal Limited Forums
eBay Suspension & PayPal Limited Forums  
Join Today
Register Subscribe
     

Registration is fast, simple and absolutely free so please, join our community today!


Go Back   Home > Stealth Topics > IP Address

IP Address Changing your IP address, multiple IPs, VPNs, hiding your IP, phone tethering, MiFi devices, hotspots and more.

Reply
 
Thread Tools
  #1  
Old 01-31-2018
lucy's Avatar
Executive [VIP]
 
Join Date: Apr 2008
Posts: 782
Thanks: 41
Thanked 21 Times in 16 Posts
Activity: 0%
Longevity: 93%
iTrader: (2)
Default IP BURGER - Kill Switch / DNS Leakage?

IP BURGER - Kill Switch how exactly does this work, does it activate automatically if connection to IP Burger is lost to hide your real IP?

Does IP Burger have DNS Leakage?

PayPal know IP Burger is VPN they can see it from their end, will this mean others can see its VPN?
Reply With Quote
The complete step-by-step guide to get back to selling today!

  #2  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 411 Times in 269 Posts
Activity: 4%
Longevity: 44%
iTrader: (0)
Default Re: IP BURGER - Kill Switch / DNS Leakage?

I wasnt aware that IP Burger had its own kill switch, but it may, I dont read through these posts as much as I use to.

What OS do you need a kill switch for? I have you covered for everything except Windows XP.
Reply With Quote
  #3  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 411 Times in 269 Posts
Activity: 4%
Longevity: 44%
iTrader: (0)
Default Re: IP BURGER - Kill Switch / DNS Leakage?

Chrome OS:
1.Google how to put chrome book in Developer Mode....
2. Powerwash and put chrome book in Dev mode... (you will lose all cookies but you only have to do this once)
3. Alt+Ctl+T then type "shell" in crosh. ie crosh> shell
4. get root access by typing "sudo su" ie chronos@localhost / $ sudo su
5. then drop some iptables on that "B"

sudo iptables -F
sudo iptables -P INPUT DROP
sudo iptables -P FORWARD DROP
sudo iptables -P OUTPUT DROP
sudo iptables -A INPUT -i lo -j ACCEPT
sudo iptables -A INPUT -s 55.55.55.55 -j ACCEPT
sudo iptables -A INPUT -i tun0 -j ACCEPT
sudo iptables -A INPUT -j DROP
sudo iptables -A OUTPUT -o lo -j ACCEPT
sudo iptables -A OUTPUT -d 55.55.55.55 -j ACCEPT
sudo iptables -A OUTPUT -o tun0 -j ACCEPT
sudo iptables -A OUTPUT -j DROP
sudo ip6tables -F

55.55.55.55 = the ip address of your VPN

When you power off the chromebook it will reset default iptables

You will have to do this for each user account/VPN on the Chromebook every time you log into the user account (if you need to access eBay or PP).

Rock Solid and super easy to use....

Last edited by nate; 02-01-2018 at 11:29 AM.
Reply With Quote
  #4  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 411 Times in 269 Posts
Activity: 4%
Longevity: 44%
iTrader: (0)
Default Re: IP BURGER - Kill Switch / DNS Leakage?

If your running Linux use UWF fire wall...

VPN Kill Switch for Linux with UFW firewall.

UFW VPN KILLSWITCH TUTORIAL

This is a quick guide for setting up a killswitch using UFW (Uncomplicated FireWall). It is
assumed you are using SoftEther and optionally Network-Manager with
network-manager-L2TP/IPsec or OpenVPN

1. (Optional) IP Addresses
Before we can start we're going to need the IP address (or the IP addresses) of your VPN so that we can whitelist those later on, write them down. They are obviously goingto be different for every VPN and VPNs with multiple servers, so I'll leave this up to you.

2. Install & Enable UFW
On some systems UFW is installed and enabled by default (Ubuntu, for example).
Installation procedure is going to be different for every distribution of GNU/Linux, but once you've got it installed enabling it is easy (assuming you have sudo):

sudo ufw enable

3. Block All Traffic
Block all outgoing traffic:

sudo ufw default deny outgoing

And also block all incoming traffic:

sudo ufw default deny incoming

4. Make an exception for L2TP/IPsec or OpenVPN
It is assumed you are using ppp0 or tun0 as a network adapter (if you're unsure: ifconfig).

Allowoutgoing traffic on ppp0 or tun0:

sudo ufw allow out on tun0 from any to any

And optionally allow incoming traffic on ppp0 or tun0:

sudo ufw allow in on tun0 from any to any

5. (Optional) Make an exception for your VPN
At this point you're technically done, but with this setup you would need to disable UFW every time L2TP/IPsec or OpenVPN needed to connect to your VPN and then re-enable UFW when it has connected. Instead of doing that you could add the IP addresses mentioned earlier as exceptions to UFW.

To add a single IP: (55.55.55.55 = VPN IP)

sudo ufw allow out from any to 55.55.55.55

To add a range, use a mask:

sudo ufw allow out from any to 55.55.55.0/24

6. Block all IPV6 Traffic
To block all ipv6 traffic by deleting rule number for ipv6:

sudo ufw status numbered

sudo ufw delete 3

7. Check that it's working

sudo ufw status numbered

8. You're done!

Congratulations, you've configured a VPN Killswitch on your GNU/Linux system!

Last edited by nate; 01-31-2018 at 09:08 PM.
Reply With Quote
  #5  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 411 Times in 269 Posts
Activity: 4%
Longevity: 44%
iTrader: (0)
Default Re: IP BURGER - Kill Switch / DNS Leakage?

For windows set up a window fire wall. The instructions are on 24vc's site. IPBurger probably has them on their site too.

Its too easy.
Reply With Quote
  #6  
Old 01-31-2018
aspkin's Avatar
Administrator
 
Join Date: Jan 2007
Posts: 11,372
Thanks: 3,072
Thanked 4,228 Times in 1,792 Posts
Activity: 4%
Longevity: 100%
iTrader: (24)
Default Re: IP BURGER - Kill Switch / DNS Leakage?

If you use the MAC VPN software from IPBurger, it comes with a built in kill switch.

Windows has to be activated but we explain that pretty easily here:

https://secure.ipburger.com/knowledg...s-and-Mac.html

You have to be logged in to view.
__________________

Last edited by aspkin; 01-31-2018 at 08:25 PM.
Reply With Quote
  #7  
Old 02-17-2018
lucy's Avatar
Executive [VIP]
Threadstarter  
 
Join Date: Apr 2008
Posts: 782
Thanks: 41
Thanked 21 Times in 16 Posts
Activity: 0%
Longevity: 93%
iTrader: (2)
Default

Does IP Burger support XP?
Quote:
Originally Posted by aspkin View Post
If you use the MAC VPN software from IPBurger, it comes with a built in kill switch.

Windows has to be activated but we explain that pretty easily here:

https://secure.ipburger.com/knowledg...s-and-Mac.html

You have to be logged in to view.
Reply With Quote
  #8  
Old 02-17-2018
aspkin's Avatar
Administrator
 
Join Date: Jan 2007
Posts: 11,372
Thanks: 3,072
Thanked 4,228 Times in 1,792 Posts
Activity: 4%
Longevity: 100%
iTrader: (24)
Default Re: IP BURGER - Kill Switch / DNS Leakage?

Yes, it supports all platforms.

Soon we will release custom software for Windows platform.
__________________
Reply With Quote
Reply



Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
IP Burger Kill Switch lucy Forum Suggestions 3 01-03-2020 12:01 AM
VPN L2TP/IPsec VPN Kill Switch for Linux using UFW Firewall nate IP Address 0 07-02-2017 09:57 AM
What is the best kill switch VPN when using OS X (MacBook) ebay3r eBay Discussion! 3 12-02-2016 06:46 PM
VPN Kill switch..... czuk eBay Tracking 7 04-20-2016 07:36 PM
Kill- Switch Items on Ebay Hoanandonly eBay Discussion! 0 05-29-2014 12:20 PM


Aspkin Group

All times are GMT -5. The time now is 05:44 AM.


Stop the guessing games and learn how you can quickly and easily get back on eBay today!
Read the best selling step-by-step eBay Suspension guide eBay Stealth!
Amazon Suspension? Read Amazon Ghost to get back on Amazon!
vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Ad Management by RedTyger
no new posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58