我有一个
@L_404_0@脚本设置,只要在网站上执行操作,就会发出cURL请求.问题是每当运行操作时,信息都会被POST两次.
我需要弄清楚,如果这是我的问题(cURL正在运行两次)或者它正在POST的URL正在做两次.
我想最好的方法是查看来自服务器的传出的http POST请求.
这是最好的选择吗?如果是这样,我该怎么做呢?
解决方法
你可以使用tcpdump来嗅探服务器上的一些数据包,如下所示:
# tcpdump -vv -s0 tcp port 80 -w /tmp/apache_outgoing.pcap
并运行您的PHP脚本以查看会发生什么.
Is there any way to restrict it to a) Only POST data,
您可以使用Wireshark中的http.request.method == POST过滤所有内容并进行过滤.
b) Only coming from 1.1.1.1
# tcpdump -vv -s0 tcp port 80 and src host 1.1.1.1
和c)只去2.2.2.2?
# tcpdump -vv -s0 tcp port 80 and dst host 2.2.2.2
阅读tcpdump
‘s man page了解更多详情.