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
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
---
2
2
title: Filter Fiddler traffic using domain names and client processes
3
-
description: Introduces how to filter traffic that's captured by Fiddler using domain/host names and client processes owned by a Microsoft Entra tenant.
3
+
description: Introduces how to filter traffic that's captured by Fiddler using domain/host names owned by a Microsoft Entra tenant and client processes.
4
4
ms.service: entra-id
5
5
ms.topic: how-to
6
-
ms.date: 04/01/2025
6
+
ms.date: 04/02/2025
7
7
ms.reviewer: bachoang, v-weizhu
8
8
ms.custom: sap:Enterprise Applications
9
9
---
10
10
# Filter Fiddler traffic using domain names and client processes
11
11
12
-
This article explains how to filter traffic that's captured by Fiddler using domain/host names and client processes owned by a Microsoft Entra tenant.
12
+
This article explains how to filter traffic that's captured by Fiddler using domain/host names owned by a Microsoft Entra tenant and client processes.
13
13
14
14
## Prerequisites
15
15
@@ -22,7 +22,7 @@ To filter traffic using Fiddler's built-in filter feature, follow these steps:
22
22
1. Open Fiddler and navigate to the right panel.
23
23
2. Select the **Filters** tab, then check the **Use filters** box.
24
24
3. Under the **Hosts** section, select **Show only the following Hosts**.
25
-
4.Enter the host name list you want to filter on, separated by semicolons, for example, `localhost;login.microsoftonline.com;graph.microsoft.com`.
25
+
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`.
26
26
27
27
> [!NOTE]
28
28
> This text box will display a yellow background while editing the list, indicating unsaved changes.
@@ -35,8 +35,8 @@ Under the **Client Process** section, you can also select a specific process to
35
35
> [!NOTE]
36
36
> This option is used especially for browser-based applications.
37
37
38
-
1. In Fiddler, go to **Rules** > **Customize Rules…**.
39
-
2. Locate the **OnBeforeRequest** function in the script editor.
38
+
1. In Fiddler, go to **Rules** > **Customize Rules…**. This will open the *CustomRules.js* file in the FiddlerScript editor.
39
+
2. Locate the **OnBeforeRequest** function in the FiddlerScript editor.
40
40
3. Insert the following JavaScript code at the beginning of the function:
41
41
42
42
```javascript
@@ -80,12 +80,13 @@ Under the **Client Process** section, you can also select a specific process to
80
80
-`host`: Contains the list of domain names to filter on.
81
81
-`processlist`: Contains the list ofprocess names to filter on.
82
82
83
-
4. Save the changes to the script file.
83
+
4. Save the changes to the *CustomRules.js* file file.
84
84
85
85
## References
86
86
87
87
- [Modifying a Request or Response](http://docs.telerik.com/fiddler/KnowledgeBase/FiddlerScript/ModifyRequestOrResponse)
0 commit comments