Searched for a tool like wireshock in windows and came to know this!. This help me to dump the soap requests.
Here is the simple command.
sudo tcpdump -XX -s0 -i lo -w k "tcp port 80"
-XX: Print packets in hex and ASCII
-s0: Print whole packets, not only first 68 chars.
-i is the interface to monitor.
"tcp port 80" Filter expression.
-w output file.
This dumps all the requests and responses which are passing through tcp port 80!.
No comments:
Post a Comment