Python Advanced (35)-fiddler command line and HTTP breakpoint debugging

Source: Internet
Author: User

Python Advanced (35)-fiddler command line and HTTP breakpoint debugging one. Fiddler built-in commands

?? In the previous section (using Fiddler for packet Capture analysis), the Web session (which is not the same concept as what we normally call a session) is described here, and each HTTP request is called a session. interface, you can see all the HTTP requests that Fiddler crawled. In order to manage all sessions more conveniently, Fiddler provides a series of built-in functions for filtering and manipulating these sessions ( Custom command line operation the children's shoes of Linux should be able to feel how convenient this will be. Enter the location of the command below the Web Session Admin panel (via the shortcut key Alt+q can focus to the command line).
?? There are several commands built into the fiddler:

1. Select command

?? Select all of the corresponding types (referred to as Content-type) for the specified type of HTTP request, such as selecting a picture, using the command select Image. While select CSS selects all requests of the corresponding type CSS, select HTML selects all requests that respond to HTML (what about the SQL statement?). )。 Is the result after the select image is executed:

2. Allbut command

?? The Allbut command is used to select all response types that are not HTTP requests of a given type. such as Allbut image is used to select all the corresponding types are not pictures of the session (HTTP request), The command also has an alias keeponly. It should be noted that the keeponly and Allbut commands are deleted from the session that is not of that type, leaving the response of that type. Therefore, if you execute allbut xxxx (a nonexistent type), it is actually similar to executing the CLS command (deleting all sessions, ctrl+x shortcut keys are also this function).

3.? text command

?? Select all the sessions for all URLs that match the character after the question mark.

4. >size and 5. =status command

?? Select all HTTP requests that have a response status equal to the given state.
?? For example, select all HTTP requests with a status of 200: =200

6. @host command

?? Select all HTTP requests that contain the specified HOST.
?? For example: @csdn. NET selects all requests that host contains csdn.net

7. Bpafter, Bps, BPV, BPM, BPU

?? These commands are primarily used to set breakpoints in batches

    • Bpafter XXX: Interrupt URL contains all session responses for specified characters
    • Bps XXX: Interrupts the HTTP response status for all session responses of the specified character.
    • BPV XXX: All session responses that interrupt the specified request mode
    • BPM XXX: Interrupts all session responses for the specified request mode. Equivalent to BPV XXX
    • Bpu XXX: Similar to bpafter.

?? When these commands do not have parameters, all HTTP requests that set breakpoints are emptied.
?? Additional commands can be found in the Fiddler official website Manual.

Two Using Fiddler for HTTP Breakpoint debugging

?? This is one of Fiddler's powerful and practical tools. By setting breakpoints, Fiddler can:

    • Modifies the HTTP request header information. For example, the request header of the UA, Cookie, Referer information, through "forge" the corresponding information to achieve the corresponding purpose (debugging, simulation of user real request, etc.).

    • Construct request data, break through the limits of the form, and submit the data at will. Avoid page JS and form restrictions affecting debugging.

    • Intercept response data and modify the response entity.
      ?? Why is the above method important? Suppose the JS front-end programmer and the server programmer is the division of labor, JS programmers want to debug the function of Ajax requests, so that the server-side programmers do not have to wait for the development of all interfaces before the development of the JS side of the AJAX request function, because through the "simulation" of the real server-side response, can guarantee the correctness of the function, and the server-side development programmer, as long as the final response is guaranteed to comply with the provisions. This greatly simplifies the efficiency of program development and, of course, reduces the difficulty of linking programmers to different lines of business.
      ?? There are two ways of setting breakpoints:

    • 1.fiddler menu bar->rules->automatic breakpoints-> Select a breakpoint, in this way the breakpoint set will be valid for all subsequent HTTP requests. There are two breakpoint locations:

    • A. Before response. That is, after the request is sent, but before the Fiddler agent Relays, the requested data can be modified.

    • B.after Response. That is, after the server responds, but before fiddler the response to the client. You can then modify the result of the response.

    • 2. Enter the command line. Bpafter xxx or BPV,BPU,BPM, etc. set breakpoints. This breakpoint is only for a specific type of request.

?? As an example of a local Web project, we demonstrate how to set HTTP breakpoints simply:
?? 1. First set up the Firefox agent, so that it can crawl all HTTP requests (localhost request, you can also set in the filter only crawl intranet request), set as shown:

-then open the local project with the Web. The content of the page is:

-Set the post-response breakpoint (after response breakpoint), which can be set via the command line: Bpafter localhost. After you type enter, the Web accesses the file again, and through the Fiddler Web session interface, you can see that the request has been hung up, and the Web browser has been loaded. Looking at the right side of the Inspector panel, there is something new:

?? In this case, we can modify the response information. The modification process is:
?? Switch to the TextView sub-panel, select the section you want to modify, and then click "Run to complete" to echo the modified response. Suppose we revise the following:

?? After clicking on Execute, open the Web interface just now. Can see the changes of the page.

?? Visible, the response of the page has changed accordingly. This is the post-response breakpoint. Of course, in practical applications, breakpoints are more complex to set and respond to than this, and here is just a basic example.
?? The ways to terminate breakpoints are:

    • Clicking "Run Complete" on the Inspector interface terminates the breakpoint on this HTTP request.
    • Entering the GO command also causes the current request to skip the breakpoint.
    • You can disabled breakpoints in Rules->auto breakpoint.
      In short, Fiddler's breakpoint function is very powerful, about its further study and application, need a continuous accumulation and groping process.


Python Advanced (35)-fiddler command line and HTTP breakpoint debugging

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.