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
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ This article explains how to filter traffic that's captured by Fiddler using dom
15
15
16
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.
17
17
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." lightbox="media/filter-fiddler-traffic-using-domain-name-client-process/all-processes.png":::
19
+
18
20
## Filter traffic using Fiddler's built-in filter feature
19
21
20
22
To filter traffic using Fiddler's built-in filter feature, follow these steps:
@@ -28,6 +30,8 @@ To filter traffic using Fiddler's built-in filter feature, follow these steps:
28
30
> This text box will display a yellow background while editing the list, indicating unsaved changes.
29
31
5. Select the **Actions** button to save the list. The background color will change to white, confirming the list is saved.
30
32
33
+
:::image type="content" source="media/filter-fiddler-traffic-using-domain-name-client-process/show-only-the-following-hosts.png" alt-text="Screenshot that shows how to filter traffic based on host names." lightbox="media/filter-fiddler-traffic-using-domain-name-client-process/show-only-the-following-hosts.png":::
34
+
31
35
Under the **Client Process** section, you can also select a specific process to filter on. This is particularly useful for filtering a standalone application. It might be less effective for capturing browser traffic because multiple processes with the same name can make it difficult to identify the correct one.
32
36
33
37
## Filter traffic using JavaScript code in the OnBeforeRequest function
@@ -74,6 +78,8 @@ Under the **Client Process** section, you can also select a specific process to
74
78
// end filter
75
79
```
76
80
81
+
:::image type="content" source="media/filter-fiddler-traffic-using-domain-name-client-process/add-javascript-code-in-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-in-onbeforerequest-function.png":::
82
+
77
83
Here are explanations for some variables in the JavaScript code:
78
84
79
85
-`filterOn`:Set it to `true` to enable the filter and `false` to disable it.
0 commit comments