HTTP proxy artifact fiddler
Fiddler is a powerful Web debugging tool that can record HTTP requests from all clients and servers. Fiddler startup, the default IE proxy is set to 127.0.0.1:8888, while other browsers need to be set manually.
Working principle
Fiddler is working as a proxy Web server, which uses proxy addresses: 127.0.0.1, Port: 8888
Fiddler crawling HTTPS settings
Start Fiddler, open the Tools > Telerik Fiddler Options in the menu bar and open the Fiddler Options dialog box.
To set the Fiddler:
3. Configure Windows Trust this root certificate for Fiddler to resolve the security Warning: Trust root Certificate (Trusted root certificate).
4.Fiddler main Menu Tools, Fiddler options...-> Connections
5. Restart the fiddler for the configuration to take effect (this step is important and must be done).
Fiddler How to capture Chrome's session
Installing the Switchyomega Agent Management Chrome Browser plugin
2., set the proxy server to 127.0.0.1:8888
3. Switch to the set-up agent via the browser plugin.
Fiddler interface
When set, the native HTTP communication will pass through the 127.0.0.1:8888 proxy, and it will be intercepted by fiddler.
Request section
- headers--displays the header of the HTTP request sent by the client to the server, displayed as a hierarchical view that contains WEB client information, cookies, transmission status, and so on.
- textview--displays the body part of the POST request as text.
- webforms--displays the requested GET parameters and the POST body contents.
- hexview--displays the request with hexadecimal data.
- auth--Displays the Proxy-authorization (proxy authentication) and Authorization (authorization) information in the response header.
- raw--displays the entire request as plain text.
- JSON-Displays the JSON format file.
- xml--if the body of the request is in XML format, it is displayed with a hierarchical XML tree.
Response (Response) part of the explanation
- transformer--Displays the encoding information for the response.
- headers--displays the header of the response with a graduated view.
- The textview--uses text to display the corresponding body.
- imagevies--If the request is a picture resource, display a picture of the response.
- hexview--displays the response with hexadecimal data.
- The webview--responds to the preview effect in the Web browser.
- auth--Displays the Proxy-authorization (proxy authentication) and Authorization (authorization) information in the response header.
- caching--displays the cached information for this request.
- privacy--Displays the private (P3P) information for this request.
- raw--displays the entire response as plain text.
- JSON-Displays the JSON format file.
- xml--if the body of the response is in XML format, it is displayed with a hierarchical XML tree.
HTTP proxy fiddler (iii)