Fiddler's basic interface presentation

Reproduced, please indicate the source, thank you ~

fiddler interface is mainly divided into the following six modules.

One: the main menu bar : You can refer to: https://www.cnblogs.com/sjl179947253/p/7620524.html

II: Toolbar :

   1  : Select a menu http, you can add comments, you'll see later in this http comment.

       2,  : resend the request to the server

       3  : All sessions Delete submenu, the equivalent of emptying

       4,  : pause break in the session for the

       5 : this switch is not set to cancel all of the corresponding cache interrupts

       6,  : decoding in response to the request

       7  : drop-down you can choose how many sessions reserved, for example, Article 100, 200

       8 : Click the icon and drag it to specify the browser, the log will record the communication situation of this page alone

       9 : Open the find seesion page, when more session, you can search query

      10 : Save all session files to SAZ

      11 : current desktop screenshots added to the list to jpeg format websession

      12 : Simple timing functions

      13 : Select a session, click on the icon, it will open IE browser

      14 : Empty the cache file

      15 : Open the text encoding, decoding gadgets

      16 : Create a small window that contains all the features of

Three: Web Session List

        From left to right we turn to introduce:

        1, #: After clicking this session will be arranged in the order

        2, Result: status code of the response. For example, 200 represents a normal response

        3, Protol: using the HTTP or HTTPS protocol

        4, Host: host name and port number of the server, such as: www.baidu.com 

        5, URL: URL's path. Is back with the URL path www.baidu.com

        6, Body: HTTP response to the number of bytes contained in the request

        7, Caching: field values ​​and the associated cache

        8, Content-Type: Content-Type response value, such as: text / html

        9, process: corresponding to the local Widows process, for example, now use the browser is Chrome.

        10, Comment: Http when selected to add notes, can be viewed in this

 

Four: Function Panel

   We used generally Inspectors tab, select a http request, such as Baidu, and then look at the function panel on the right, on the part of the http request information packets, raw option card to view complete information at http part is issued response message information, Header tab to view only the header information.

Other tabs show is a different format

Textview: Only post only request information is not displayed when the get request, such as a login to fetch page.

  syntaview: This represents the code view

       WebForms: shows get the request parameters and post parameters in the body 

  HexView: display in hexadecimal data

  Auth: displays header in Proxy-Authorization and Authorization information, when general login information will show up

  Raw: displays the entire request for complete information

  XML: If the body of the request is in XML format, you can use this view to see

  WebView: to display the page

  Cookies: Cookie mechanism is a mechanism for the session. Cookie browser is a mechanism for storing small amounts of data, the data "key = value" is stored, the browser sends an HTTP request, the automatic accompanying cookie information.

 Five: QuickExecl 

      

      Commonly used commands:

  cls Clear screen or keyboard shortcut: Ctrl+x you can clear the screen

       quit quit Fiddler

  <Size selected in response to all of the session size greater than the specified size

  > Size selected in response to all of the session size greater than the specified size

  = Status selection response HTTP status code equal to the specified values ​​of all session

  Request = http method method selection request is equal to the specified value of the entire session

  All session specified character bps interrupt response HTTP response status

  bpv or bpm specified interrupt request all session response mode

  bpu interrupt all the session in response to the request URL contains the specified characters

  g or continue to go all the interrupted Session

Six status bar

 

     Click Capturing, websession will stop updating the new session request.

     All Processes show followed by a total of how many sessions.

      

Reproduced, please indicate the source, thank you ~

Guess you like

Origin www.cnblogs.com/zengxuejie/p/11526152.html