IP Burger Concern - 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-25-2018
Junior Member
 
Join Date: Apr 2013
Posts: 179
Thanks: 26
Thanked 18 Times in 14 Posts
Activity: 0%
Longevity: 64%
iTrader: (0)
Default IP Burger Concern

Hi everyone...

Im thinking of going with a Fresh IP burger VPN rather than using a dongle but I just have one major concern which im hoping someone that uses can help me with.

I use a genuine ebay account with my home Static IP address. I want to use IP burger with a new stealth account instead of using a dongle which ive been using previously. With a dongle I can connect to the internet without having to connect to my home IP address so this secures the genuine account. My concerns with IP burger is that ill have to use my home IP address to connect to the VPN and if im in the middle of stealthing and the VPN drops the stealth account would then automatically connect to my home IP address and get both the stealth and my genuine account banned.

I cannot put my genuine account at risk, this is a huge no no. So my question is, what safe guarding does IP burger have to stop my stealth account connecting to my home IP address if the VPN drops?

Obviously ill be using seperate windows accounts etc, but would still have to use the same IP address to connect to my genuine account and the VPN that runs the stealth account.

Thanks to anyone that can help.
Reply With Quote
The complete step-by-step guide to get back to selling today!

  #2  
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 Re: IP Burger Concern

It’s supposed to have a ‘kill switch’ that hides your real IP of connection to IP Burger is lost?
Reply With Quote
  #3  
Old 01-31-2018
rsot's Avatar
Executive [VIP]
 
Join Date: Dec 2009
Posts: 76,096
Thanks: 5,946
Thanked 8,937 Times in 8,228 Posts
Activity: 100%
Longevity: 83%
iTrader: (7)
Default Re: IP Burger Concern

Quote:
Originally Posted by lucy View Post
It’s supposed to have a ‘kill switch’ that hides your real IP of connection to IP Burger is lost?
Decent point.
Reply With Quote
  #4  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 412 Times in 270 Posts
Activity: 0%
Longevity: 45%
iTrader: (0)
Default Re: IP Burger Concern

Tell me what OS are you using and I'll drop some knowledge?
Reply With Quote
  #5  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 412 Times in 270 Posts
Activity: 0%
Longevity: 45%
iTrader: (0)
Default Re: IP Burger Concern

Get ready... This is going to be loud when it drops....

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 IP tables to default...

Rock Solid and easy...

Last edited by nate; 02-01-2018 at 11:25 AM.
Reply With Quote
  #6  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 412 Times in 270 Posts
Activity: 0%
Longevity: 45%
iTrader: (0)
Default Re: IP Burger Concern

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-I2TP/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 going
to 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). ppp0 = L2TP/IPsec and tun0 = OpenVPN

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 without 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 (your VPN IP) 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:09 PM.
Reply With Quote
  #7  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 412 Times in 270 Posts
Activity: 0%
Longevity: 45%
iTrader: (0)
Default Re: IP Burger Concern

For windows set up a window fire wall. The instructions are on 24vc's site.
Reply With Quote
  #8  
Old 01-31-2018
aspkin's Avatar
Administrator
 
Join Date: Jan 2007
Posts: 11,373
Thanks: 3,072
Thanked 4,230 Times in 1,792 Posts
Activity: 1%
Longevity: 100%
iTrader: (24)
Default Re: IP Burger Concern

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
  #9  
Old 01-31-2018
nate's Avatar
Senior Member
 
Join Date: Jul 2016
Posts: 990
Thanks: 169
Thanked 412 Times in 270 Posts
Activity: 0%
Longevity: 45%
iTrader: (0)
Default Re: IP Burger Concern

@Aspkin

Damn Boss.... You have a kill switch built in... Now that's service....
Reply With Quote
  #10  
Old 02-01-2018
GreenBean's Avatar
Executive [VIP]
 
Join Date: Sep 2007
Posts: 42,343
Thanks: 5,612
Thanked 9,142 Times in 7,106 Posts
Activity: 0%
Longevity: 96%
iTrader: (6)
Default Re: IP Burger Concern

Quote:
Originally Posted by nate View Post
@Aspkin

Damn Boss.... You have a kill switch built in... Now that's service....
Why would you not expect this?

Always on top of the game is the Boss.

__________________
REAP WHAT YOU SOW. LIFE IS SO NOT FAIR.
Reply With Quote
  #11  
Old 02-10-2018
pleure's Avatar
Junior Member
 
Join Date: Dec 2009
Posts: 94
Thanks: 8
Thanked 6 Times in 6 Posts
Activity: 0%
Longevity: 83%
iTrader: (1)
Default Re: IP Burger Concern

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.
working well as my experience.tested many times
Reply With Quote
  #12  
Old 03-23-2018
Junior Member
Threadstarter  
 
Join Date: Apr 2013
Posts: 179
Thanks: 26
Thanked 18 Times in 14 Posts
Activity: 0%
Longevity: 64%
iTrader: (0)
Default Re: IP Burger Concern

Thanks everyone, much appreciated. Only just seen the responses!
Reply With Quote
Reply




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
Is this a concern for paypal!? AgentSmith PayPal Talk 2 12-17-2016 08:04 PM
ABE/Amz linking concern Foxhound Amazon 0 07-08-2016 11:19 AM
Reason for concern? acreech41311 eBay Discussion! 4 08-06-2013 09:48 AM
To Whom It May Concern: satori8311 Introductions 8 01-01-2012 01:30 AM


Aspkin Group

All times are GMT -5. The time now is 03:07 PM.


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