I'm using procmon to analyze the behavior of a program.
I can see that the program is communicating with another program locally over TCP:
This "Windows Process Monitor" does not log the actual content sent between the two programs. Therefore, I'll use Wireshark and sniff every available capture interface (LAN being where I expect to see the message traffic).
Unfortuntely, Wireshark is not logging any of the traffic that procmon is claiming.
I've tried various filters, and I'm confident that I'm not overlooking the results generated by Wireshark.
(tcp.port == 60882)
(ip == 127.0.0.1)
Are there reasons Wireshark would be unable to sniff these messages?
Is there anything I can do to see complimentary results between procmon and Wireshark?