mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 15:45:27 +00: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>
29 lines
612 B
YAML
29 lines
612 B
YAML
id: dns-http-dynamic-values
|
|
|
|
info:
|
|
name: multi protocol request with dynamic values
|
|
author: pdteam
|
|
severity: info
|
|
|
|
dns:
|
|
- name: "{{FQDN}}" # DNS Request
|
|
type: cname
|
|
|
|
extractors:
|
|
- type: dsl
|
|
name: blogid
|
|
dsl:
|
|
- trim_suffix(cname,'.vercel-dns.com')
|
|
internal: true
|
|
|
|
http:
|
|
- method: GET # http request
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- contains(body,'introduction') # check for http string
|
|
- blogid == 'cname' # check for cname (extracted information from dns response)
|
|
condition: and |