mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-01-31 15:53:10 +08:00
* test(flow): update outdated test cases Signed-off-by: Dwi Siswanto <git@dw1.io> * test(multiproto): update outdated test cases Signed-off-by: Dwi Siswanto <git@dw1.io> * feat: fixed failing tests * fixed data race * fixed memgaurdian race conditiong * test(customtemplates): use test repo Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(customtemplates): add more `{Clone,Pull}Options` Signed-off-by: Dwi Siswanto <git@dw1.io> * feat(customtemplates): validate `{Clone,Pull}Options` Signed-off-by: Dwi Siswanto <git@dw1.io> * bugfix: fixed failing integration tests for flow and multi * chore: either 1 or 2 results in interactsh --------- Signed-off-by: Dwi Siswanto <git@dw1.io> Co-authored-by: Ice3man <nizamulrana@gmail.com>
21 lines
316 B
YAML
21 lines
316 B
YAML
id: condition-flow-no-operators
|
|
info:
|
|
name: Condition Flow No Operators
|
|
author: pdteam
|
|
severity: info
|
|
|
|
flow: dns() && http()
|
|
|
|
dns:
|
|
- name: "{{FQDN}}"
|
|
type: CNAME
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/?ref={{dns_cname}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "html>" |