mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 16:05:26 +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>
27 lines
381 B
YAML
27 lines
381 B
YAML
id: vercel-hosted-detection
|
|
info:
|
|
name: Vercel-hosted detection
|
|
author: pdteam
|
|
severity: info
|
|
|
|
|
|
flow: dns() && http()
|
|
|
|
dns:
|
|
- name: "{{FQDN}}"
|
|
type: CNAME
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "vercel-dns"
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{dns_cname}}"
|
|
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "DEPLOYMENT_NOT_FOUND" |