You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: support/entra/entra-id/app-integration/filter-fiddler-traffic-using-domain-name-client-process.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Filter Fiddler traffic using domain names and client processes
2
+
title: Filter Fiddler Traffic Using Domain Names and Client Processes
3
3
description: Introduces how to filter traffic that's captured by Fiddler using domain/host names owned by Microsoft Entra and client processes.
4
4
ms.service: entra-id
5
5
ms.topic: how-to
@@ -13,7 +13,7 @@ This article explains how to filter traffic that's captured by Fiddler using dom
13
13
14
14
## Prerequisites
15
15
16
-
Before filtering, ensure that Fiddler is configured to capture traffic for all processes. At the bottom left corner of the Fiddler window, you can select **All processes** to change the selection.
16
+
Before filtering, ensure that Fiddler is configured to capture traffic for all processes. In the lower-left corner of the Fiddler window, you can select **All processes** to change the selection.
17
17
18
18
:::image type="content" source="media/filter-fiddler-traffic-using-domain-name-client-process/all-processes.png" alt-text="Screenshot that shows the 'All processes' button.":::
19
19
@@ -22,7 +22,7 @@ Before filtering, ensure that Fiddler is configured to capture traffic for all p
22
22
To filter traffic using Fiddler's built-in filter feature, follow these steps:
23
23
24
24
1. Open Fiddler and navigate to the right panel.
25
-
2. Select the **Filters** tab, then check the **Use filters**box.
25
+
2. Select the **Filters** tab, and then select the **Use Filters**checkbox.
26
26
3. Under the **Hosts** section, select **Show only the following Hosts**.
27
27
4. In the text box, enter the host name list you want to filter on, separated by semicolons, for example, `localhost;login.microsoftonline.com;graph.microsoft.com`.
28
28
@@ -39,7 +39,7 @@ Under the **Client Process** section, you can also select a specific process to
39
39
> [!NOTE]
40
40
> This option is used especially for browser-based applications.
41
41
42
-
1. In Fiddler, go to **Rules** > **Customize Rules…**. This will open the *CustomRules.js* file in the FiddlerScript editor.
42
+
1. In Fiddler, go to **Rules** > **Customize Rules**. This action will open the **CustomRules.js** file in the FiddlerScript editor.
43
43
2. Locate the **OnBeforeRequest** function in the FiddlerScript editor.
44
44
3. Insert the following JavaScript code at the beginning of the function:
45
45
@@ -80,13 +80,13 @@ Under the **Client Process** section, you can also select a specific process to
80
80
81
81
:::image type="content" source="media/filter-fiddler-traffic-using-domain-name-client-process/add-javascript-code-onbeforerequest-function.png" alt-text="Screenshot that shows the JavaScript code added in the OnBeforeRequest function." lightbox="media/filter-fiddler-traffic-using-domain-name-client-process/add-javascript-code-onbeforerequest-function.png":::
82
82
83
-
Here are explanations for some variables in the JavaScript code:
83
+
Here are the explanations of some variables in the JavaScript code:
84
84
85
85
-`filterOn`:Set it to `true` to enable the filter and `false` to disable it.
86
86
-`host`: Contains the list of domain names to filter on.
87
87
-`processlist`: Contains the list ofprocess names to filter on.
88
88
89
-
4. Save the changes to the *CustomRules.js* file file.
89
+
4. Save the changes to the **CustomRules.js** file.
0 commit comments