I find Wireshark pretty hard to figure out, so here's a quick way to get started:

  1. Capture > Options > WiFi, and click on the Start button in the lower right corner. Or, on the Wireshark Welcome page just double click Wifi. Loopback is for listening on localhost.
  2. In your browser, navigate to some website, like google.com
  3. You will see a massive amount of data scroll by in the Wireshark window.

To make sense of all the data:

  1. Make sure View > Colorized Packet List is checked.
  2. To display only the http lines, there is a text input right above the data window that says: Apply display filter. Type in: http. Then on the far right of the tex input click the blue arrow to apply the display filter. You can get as specific as you want with a display filter. There are also some default display filters that you can access from a drop down list by clicking the blue icon to the left of the text input.
  3. Then double click on one of the displayed http lines in the main window, and in the popup window start expanding the disclosure triangles.
  4. In the bottom pane where the hexdump is displayed, you can right click the pane and choose between hex and binary format. On the right hand side of the hexdump pane, you can see the text; periods represent non printing characters. If you hover over one of the periods, the hex/binary representation on the left side will be highlighted.
  5. To clear the display window, in the Wireshark toolbar click on the third icon from the left: a green shark fin.

In reply to Re: GET request using LWP::UserAgent returns 200 OK but Firefox 302 Found by 7stud
in thread GET request using LWP::UserAgent returns 200 OK but Firefox 302 Found by bliako

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.