How to log outgoing http requests from PHP + cURL?

26,251

You can use tcpdump to sniff some packets on the server, something like this:

# tcpdump -vv -s0 tcp port 80 -w /tmp/apache_outgoing.pcap

and run your PHP script to see what happens.


Is there any way to restrict it to a) Only POST data,

You can sniff all and filter with http.request.method == POST in Wireshark.

b) Only coming from 1.1.1.1

# tcpdump -vv -s0 tcp port 80 and src host 1.1.1.1

and c) only going to 2.2.2.2 ?

# tcpdump -vv -s0 tcp port 80 and dst host 2.2.2.2

Read the tcpdump's man page for more details.

Share:
26,251

Related videos on Youtube

Sam
Author by

Sam

I am a 29 year old Web Developer from North Devon, England.

Updated on September 18, 2022

Comments

  • Sam
    Sam over 1 year

    I have a PHP script set up that makes cURL requests whenever an action is performed on a site. The problem is that the information is being POSTed twice whenever the action is run.

    I need to work out if this is a problem on my end (cURL is being run twice) or the URL it's POSTing to is doing something twice.

    I imagine the best way to do this would be to view the outgoing http POST requests from the server.

    Is this the best option? If so, how do I go about it?

  • Sam
    Sam over 12 years
    Thanks, this gives me way too much information to process though. Is there any way to restrict it to a) Only POST data, b) Only coming from 1.1.1.1 and c) only going to 2.2.2.2 ?
  • Jisse Reitsma
    Jisse Reitsma about 5 years
    I'm not sure why this was downvoted so many times. It brought me to what I needed.