Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 82adaad

Browse files
committedMay 21, 2019
more Drew tech review
1 parent 58b0240 commit 82adaad

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed
 
Loading

‎articles/application-gateway/waf-tshoot.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,14 +284,20 @@ The first entry is logged because the user used a numeric IP address to navigate
284284

285285
The second one (rule 942130) is the interesting one. You can see in the details that it matched a pattern (1=1), and the field is named **text1**. Follow the same previous steps to exclude the **Request Attribute Name** that **equals** **1=1**.
286286

287-
Another way to find the Attribute name is to right-click and inspect the element in a browser. There should be a **name** field for any input area, and that is what qualifies as a *Request Attribute Name*.
288-
289287
## Finding request header names
290288

291-
Fiddler is a useful tool once again to find request header names. In the following screenshot, you can see [Drew please complete this section]
289+
Fiddler is a useful tool once again to find request header names. In the following screenshot, you can see the headers for this GET request, which include *Content-Type*, *User-Agent*, and so on.
292290

293291
![Fiddler](media/waf-tshoot/fiddler-2.png)
294292

293+
Another way to view request and response headers is to look inside the developer tools of Chrome. You can press F12 or right-click -> **Inspect** -> **Developer Tools**, and select the **Network** tab. Load a web page, and click the request you want to inspect.
294+
295+
![Chrome F12](media/waf-overview/chrome-f12.png)
296+
297+
## Finding request cookie names
298+
299+
If the request contains cookies, the **Cookies** tab can be selected to view them in Fiddler.
300+
295301
## Restrict global parameters to eliminate false positives
296302

297303
- Disable request body inspection

0 commit comments

Comments
 (0)
Please sign in to comment.