Skip to content

Commit fbd02ff

Browse files
authored
Updates from editor
1 parent e24a4eb commit fbd02ff

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

support/entra/entra-id/app-integration/filter-fiddler-traffic-using-domain-name-client-process.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Filter Fiddler traffic using domain names and client processes
2+
title: Filter Fiddler Traffic Using Domain Names and Client Processes
33
description: Introduces how to filter traffic that's captured by Fiddler using domain/host names owned by Microsoft Entra and client processes.
44
ms.service: entra-id
55
ms.topic: how-to
@@ -13,7 +13,7 @@ This article explains how to filter traffic that's captured by Fiddler using dom
1313

1414
## Prerequisites
1515

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.
1717

1818
:::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.":::
1919

@@ -22,7 +22,7 @@ Before filtering, ensure that Fiddler is configured to capture traffic for all p
2222
To filter traffic using Fiddler's built-in filter feature, follow these steps:
2323

2424
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.
2626
3. Under the **Hosts** section, select **Show only the following Hosts**.
2727
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`.
2828

@@ -39,7 +39,7 @@ Under the **Client Process** section, you can also select a specific process to
3939
> [!NOTE]
4040
> This option is used especially for browser-based applications.
4141
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.
4343
2. Locate the **OnBeforeRequest** function in the FiddlerScript editor.
4444
3. Insert the following JavaScript code at the beginning of the function:
4545

@@ -80,13 +80,13 @@ Under the **Client Process** section, you can also select a specific process to
8080

8181
:::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":::
8282

83-
Here are explanations for some variables in the JavaScript code:
83+
Here are the explanations of some variables in the JavaScript code:
8484

8585
- `filterOn`: Set it to `true` to enable the filter and `false` to disable it.
8686
- `host`: Contains the list of domain names to filter on.
8787
- `processlist`: Contains the list of process names to filter on.
8888

89-
4. Save the changes to the *CustomRules.js* file file.
89+
4. Save the changes to the **CustomRules.js** file.
9090

9191
## References
9292

0 commit comments

Comments
 (0)