I'm looking to set up an IP Changer/Spoofer that will change addresses say about every 10 minutes or something. I am unsure on how to start about doing this or if there is already software available that does this, would anyone be able to shed some light on this for me? Thanks
Why would you want that? changing IP disconnects you from whatever networked app you're usings, so I don't really see why you would want a change of IP every 10 minutes.
Code:
#include <windows.h>
int main()
{
while(1)
{
system("ip/release"); //edit me
system("ip/renew"); //edit me
Sleep(600000); // 600000 = 10 minutes
}
return 1;
}
replace ip/release and ip/renew with the cmd commands you use to renew your ip(I have a static IP, so never used it)
if you need more cmd commands just add more system("command here"); commands.
compile with MSVC++(or any other C++ compiler)
Sorry let me clarify. I need an IP randomizer. Basically it would refresh my connection every few minutes also changing my IP in the process. This method wouldn't disconnect me from any internet activity as it is just refreshing my connection.
BUMP...Still looking for IP randomizer
If you find one, let me know since I too need/want one...