in reply to Re^2: IE cookies problem
in thread IE cookies problem

You would put the die Dumper line, right after you first set $cookie.
Tshark doesn't have to be loaded on the server, just run it on any machine making the request. The idea is you want to capture the request both browsers are sending, since only one type of browser, Moz, works.


Evan Carroll
www.EvanCarroll.com

Replies are listed 'Best First'.
Re^4: IE cookies problem
by jck (Scribe) on Jul 09, 2007 at 17:39 UTC
    thanks, i'll try both of those tonight -have to go deal with non-computer stuff right now....

    where do i find tshark? when i googled it, i was sent to wireshark? is that the same thing?

      tshark is the command line version of wireshare. Because I do this a lot, here is an example of syntax. tshark -f "dst port 80" -R "http.request" -w request

      This will capture all http requests on port 80 and save them to file ./request
      The request that you are having problems with should be different, because if two browsers are generating the same request to a server, then they should receive the same result. (unless this is a contrived example)

      You can run the test with IE to see the request it generates using IES4Linux (as a side note you can do some awesome stuff by exporting to PDML or libpcap and parsing with perl)


      Evan Carroll
      www.EvanCarroll.com
        thanks so much - this looks very helpful (and a bit complex)...it'll probably take me a couple of days to get around to all this, but i appreciate the pointers.

        some of this is way over my head, but i look forward to learning, and exploring (or exploding!)