mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-02-07 11:03:09 +08:00
* fix net read * only return N bytes if extra available * use ConnReadN from readerutil * add integration test * print unsigned warning in stderr * fix js protocol in flow #4318 * fix integration test: url encoding issue * fix network protocol issue + integration tests * multiple improvements to integration test * replace all conn.Read() from tests * disable network-basic.yaml in windows * disable code protocol in win CI * fix bitwise login ps1-snippet.yaml * hide previous matcher events in flow * remove dead code+ update integration tests --------- Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.io>
28 lines
468 B
YAML
28 lines
468 B
YAML
id: flow-hide-matcher
|
|
|
|
info:
|
|
name: Test HTTP Template
|
|
author: pdteam
|
|
severity: info
|
|
description: In flow matcher output of previous step is hidden and only last event matcher output is shown
|
|
|
|
flow: http(1) && http(2)
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- ok
|
|
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "Failed event" |