Skip to content

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.

Wildcard

The * character is a special wildcard for url matchers. It refers to "matching everything of any amount" (equivalent to .* in regex).

Examples

  • A url matcher of: http://www.google.com

    • matches: http://www.google.com
    • doesn't match: http://www.google.com/foo
  • A url matcher of: http://www.google.com*

    • matches: http://www.google.com AND http://www.google.com/foo
    • doesn't match: https://www.google.com
  • A url matcher of: http*://www.google.com*

    • matches: http://www.google.com, http://www.google.com/foo, and https://www.google.com
Clone this wiki locally