mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 22:35:27 +00:00
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)"
|