mirror of
https://github.com/projectdiscovery/nuclei
synced 2026-06-08 16:50:47 +00:00
f893b6c0cb
Signed-off-by: Dwi Siswanto <git@dw1.io>
20 lines
410 B
YAML
20 lines
410 B
YAML
id: net-https
|
|
|
|
info:
|
|
name: Example Network template to send HTTPS request
|
|
author: pdteam
|
|
severity: high
|
|
description: Example Network template to send HTTPS request
|
|
|
|
|
|
tcp:
|
|
- host:
|
|
- "tls://{{Hostname}}"
|
|
port: 443
|
|
inputs:
|
|
- data: "GET / HTTP/1.1\r\nHost: {{Hostname}}\r\nConnection: close\r\n\r\n"
|
|
read-all: true
|
|
extractors:
|
|
- type: dsl
|
|
dsl:
|
|
- "len(data)" |