IP changer for free

Status
This thread has been locked.

TheDani312

ƈσɳϝιɠ | ʂҽƚυρ ʂρҽƈιαʅιʂƚ
Premium
Feedback score
1
Posts
0
Reactions
9
Resources
0
Creat a new Text documents 1.JPG then open it.
Copy this script and paste it

https://paste.md-5.net/bicefahaye.sql

Code:
On Error Resume Next

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 "Error"
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://fritz.box:49000/" & url & "upnp/control/WANIPConn1",false
   .setRequestHeader "Content-Type", "text/xml; charset=""utf-8"""
   .setRequestHeader "Connection", "close"
   .setRequestHeader "Content-Length", Len(body)
   .setRequestHeader "HOST", "fritz.box:49000"
   .setRequestHeader "SOAPACTION", """urn:schemas-upnp-org:service:WANIPConnection:1#ForceTermination"""
   .Send body
  End With
 Next
End If
MsgBox "Done! | by TheDani312"

Then save it as reconnect.vbs start it and done your IP has been changed!
 

Attachments

  • 1.JPG
    1.JPG
    9.5 KB · Views: 11
  • upload_2019-3-26_15-9-23.png
    upload_2019-3-26_15-9-23.png
    13.6 KB · Views: 21
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

User

i left click on lego people
Supreme
Feedback score
107
Posts
3,721
Reactions
2,538
Resources
0
yeah so this actually just opens up a connection between your end and a website known as fritz.box, the UPnP (data sharing) servers of a German router company (FRITZ!box). I see nothing in here that would change an IP.

I highly suggest you just turn off your router/modem overnight, then turn it back on in the morning (for dynamic IPs) or call your ISP (for static IPs).
 
Last edited:

Randomizable

| Noob Developer | Experienced Manager
Supreme
Feedback score
15
Posts
401
Reactions
181
Resources
0
yeah so this actually just opens up a connection between your end and a website known as fritz.box, which may be the host servers of a German router company but also don't have any WHOIS records and may be a fraudulent site. I see nothing in here that would change an IP.

I highly suggest you just restart your computer or call your ISP.
Good thing I'm on a Mac I probably would have ran it. thanks for the investigatory work sir.
 

User

i left click on lego people
Supreme
Feedback score
107
Posts
3,721
Reactions
2,538
Resources
0
Status
This thread has been locked.
Top