Welcome on MasterOf13FPS! MasterOf13FPS

Register today or sign up if you are already a member and never miss any cool content again :)

Bypass IP Bans

MasterOf13FPS

Administrator
Staff member
Administrator
MasterOf13FPS
Joined
Jul 11, 2020
Messages
0
Reaction score
25
Points
0
Hello,
I am currently looking for an alternative, in addition to VPN and router restart etc ... to bypass an IP Ban. In my opinion there are two ways of solving it:
a) Change IP
b) Hide IP

I'm currently reading the IP address via WebClient, but is there any way to change it (without restarting the router ...)? As far as I know, not, right? But I'm happy to teach myself a better one (maybe with the help of the Java Network Interface is anything possible).
If anyone has an idea here he/she can write me on discord (rabitem # 0910) or post a comment down below.
Greetings and have a nice day!

Languages: German and English
 
It is not possible to hide your ip, because without ip's you can't connect to anything.
The only way you could try is to use a proxy.
 
Using VPN is spoofing IP. Changing IP is router restart or IP Disconnect via vbs script. These are the two you are searching for. All other methods are not known for me.
 
Okay thanks for your replies! Appreciate it. I will work on the proxy one and try to figure out a solution, which fits well! Of course I will share my work, if I get something done...
 
Using VPN is spoofing IP. Changing IP is router restart or IP Disconnect via vbs script. These are the two you are searching for. All other methods are not known for me.

How can I do this via vbs?
 
This code is literally 5 years old now and created because of lazyness in school. Add this code in a .vbs script and double click it for an IP change! PS: Ik ist kein PHP, sieht aber cooler aus :^)

PHP:
'fb_reconnect.vbs (c) 2014 by Aui <http://www.masterof13fps.de>

On Error Resume Next

host = "192.168.178.1"

If host = False Then
 WScript.Quit
End If
Set http = Nothing
Set http = CreateObject("WinHttp.WinHttpRequest.5.1")
If http Is Nothing Then Set http = CreateObject("WinHttp.WinHttpRequest.5")
If http Is Nothing Then Set http = CreateObject("WinHttp.WinHttpRequest")
If http Is Nothing Then Set http = CreateObject("MSXML2.ServerXMLHTTP")
If http Is Nothing Then Set http = CreateObject("Microsoft.XMLHTTP")
If http Is Nothing Then
 MsgBox "Kein HTTP-Objekt verfügbar!",16,"Fehler:"
Else
'On Error Goto 0
 body =    "<?xml version=""1.0"" encoding=""utf-8""?>" _
  & "<s:Envelope xmlns:s=""http://schemas.xmlsoap.org/soap/envelope/"" s:encodingStyle=""http://schemas.xmlsoap.org/soap/encoding/"">" _
  & "<s:Body><u:ForceTermination xmlns:u=""urn:schemas-upnp-org:service:WANIPConnection:1"" /></s:Body>" _
  & "</s:Envelope>"
 For Each url In Array("igd","")
  With http
   .Open "POST", "http://" & host & ":49000/" & url & "upnp/control/WANIPConn1",false
   .setRequestHeader "Content-Type", "text/xml; charset=""utf-8"""
   .setRequestHeader "Connection", "close"
   .setRequestHeader "Content-Length", Len(body)
   .setRequestHeader "HOST", host & ":49000"
   .setRequestHeader "SOAPACTION", """urn:schemas-upnp-org:service:WANIPConnection:1#ForceTermination"""
   .Send body
  End With
 Next
End If
 
This code is literally 5 years old now and created because of lazyness in school. Add this code in a .vbs script and double click it for an IP change! PS: Ik ist kein PHP, sieht aber cooler aus ;)

PHP:
'fb_reconnect.vbs (c) 2014 by Aui <http://www.masterof13fps.de>

On Error Resume Next

host = "192.168.178.1"

If host = False Then
 WScript.Quit
End If
Set http = Nothing
Set http = CreateObject("WinHttp.WinHttpRequest.5.1")
If http Is Nothing Then Set http = CreateObject("WinHttp.WinHttpRequest.5")
If http Is Nothing Then Set http = CreateObject("WinHttp.WinHttpRequest")
If http Is Nothing Then Set http = CreateObject("MSXML2.ServerXMLHTTP")
If http Is Nothing Then Set http = CreateObject("Microsoft.XMLHTTP")
If http Is Nothing Then
 MsgBox "Kein HTTP-Objekt verfügbar!",16,"Fehler:"
Else
'On Error Goto 0
 body =    "<?xml version=""1.0"" encoding=""utf-8""?>" _
  & "<s:Envelope xmlns:s=""http://schemas.xmlsoap.org/soap/envelope/"" s:encodingStyle=""http://schemas.xmlsoap.org/soap/encoding/"">" _
  & "<s:Body><u:ForceTermination xmlns:u=""urn:schemas-upnp-org:service:WANIPConnection:1"" /></s:Body>" _
  & "</s:Envelope>"
 For Each url In Array("igd","")
  With http
   .Open "POST", "http://" & host & ":49000/" & url & "upnp/control/WANIPConn1",false
   .setRequestHeader "Content-Type", "text/xml; charset=""utf-8"""
   .setRequestHeader "Connection", "close"
   .setRequestHeader "Content-Length", Len(body)
   .setRequestHeader "HOST", host & ":49000"
   .setRequestHeader "SOAPACTION", """urn:schemas-upnp-org:service:WANIPConnection:1#ForceTermination"""
   .Send body
  End With
 Next
End If

Ich habe es mal in eine vbs Datei geschrieben, jedoch passiert nichts. UPnP klingt zwar nett, aber bringt doch bei einer statischen IP auch nichts oder? Ich meine an sich probierst du mit deinem Code einen ferngesteuerten Routerneustart zu forcieren, oder?
 
Ich habe es mal in eine vbs Datei geschrieben, jedoch passiert nichts. UPnP klingt zwar nett, aber bringt doch bei einer statischen IP auch nichts oder? Ich meine an sich probierst du mit deinem Code einen ferngesteuerten Routerneustart zu forcieren, oder?

Mit einer statischen IP macht das natürlich keinen Sinn. Benutz einfach eine gute VPN. Ich selber benutzte Perfect Privacy, da sie laut Anbieter nicht loggt. Aber ist deine Sache :)
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top