-
Notifications
You must be signed in to change notification settings - Fork 1
Url Matchers
Matthew edited this page Jun 20, 2021
·
3 revisions
Url matchers are what determine whether or not the enabled query inject parameters are applied to the current websites url.
The *
character is a special wildcard for url matchers. It refers to "matching everything of any amount" (equivalent to .*
in regex).
-
A url matcher of:
http://www.google.com
- matches:
http://www.google.com
- doesn't match:
http://www.google.com/foo
- matches:
-
A url matcher of:
http://www.google.com*
- matches:
http://www.google.com
ANDhttp://www.google.com/foo
- doesn't match:
https://www.google.com
- matches:
-
A url matcher of:
http*://www.google.com*
- matches:
http://www.google.com
,http://www.google.com/foo
, andhttps://www.google.com
- matches: