Reroute an Application's Network Traffic
-
Hello, I'd like to know if it's possible to "wrap" a running process, and get all it's Outgoing network traffic? E.g when I'm playing a game, trap its network traffic and send it to a different server? :O PS: This is not used for any form of hacking. Thanks in advance, Zaegra
Motivation is the key to software development.
-
Hello, I'd like to know if it's possible to "wrap" a running process, and get all it's Outgoing network traffic? E.g when I'm playing a game, trap its network traffic and send it to a different server? :O PS: This is not used for any form of hacking. Thanks in advance, Zaegra
Motivation is the key to software development.
for redirecting it is possible if it doesn't use direct IP accsess C:\WINDOWS\system32\drivers\etc inside there is a file named host (Without extension). You can redirect a specific DNS name to specific IP If you type www.google.com it will automatlcly go to 209.85.129.147, because it is on DNS server. If you put in host file 127.0.0.1 www.google.com and then you save that file. After that all links that try to use www.google.com will look only on your machine. (127.0.0.1 is localhost) For monitoring look at Packet Monitor C#[^]
-
for redirecting it is possible if it doesn't use direct IP accsess C:\WINDOWS\system32\drivers\etc inside there is a file named host (Without extension). You can redirect a specific DNS name to specific IP If you type www.google.com it will automatlcly go to 209.85.129.147, because it is on DNS server. If you put in host file 127.0.0.1 www.google.com and then you save that file. After that all links that try to use www.google.com will look only on your machine. (127.0.0.1 is localhost) For monitoring look at Packet Monitor C#[^]