reverse engineering - How do I change a process's socket connection -
A process is connecting to a certain IP or domain, but I do not know what it is. Process can not connect to server How can I find and replace it?
TCPView and netstat are the best work for already installed connections, which is the 'original poster's No status
A better tool for this task is a packet sniffer, which can see the connection effort. I recommend, which is available for all major platforms.
Description:
- Install, then start VirusHark
- Press Ctrl-K to start capturing
- Network Select the interface that you expect to use the program
- "tcp [tcpflags] & amp; (tcp-syn | tcp-ack) == tcp-syn" No quote)
- Start the capture, try connecting your program, and then stop the capture.
If you do fast in the final step, without any other network activity on one machine, you will only have one captured packet Otherwise, you will need to open a list to find that list This packet will show you the TCP port which you want, which is trying to use the program.
Comments
Post a Comment