Skip to content

Filter field in http protocol to select what requests to be fuzzed #4846

@tarunKoyalwar

Description

@tarunKoyalwar

Proposed Changes

  • When writing fuzzing templates , there is a need to specify if this fuzzing templates should run or should not run on a given request and this is achieved by filters ( which is a similar to/ twin of matchers )
http:
  - filters:
      - type: dsl
        dsl:
          - method != "GET"
          - method != "HEAD"
          - contains(content_type, "application/json")
        condition: and

Here, only those requests which don't have GET/HEAD request method and content type is application/json will be executed on this template and others will be excluded /skipped

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions