mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 19:15:25 +00:00
* fix net read * only return N bytes if extra available * use ConnReadN from readerutil * add integration test * print unsigned warning in stderr * fix js protocol in flow #4318 * fix integration test: url encoding issue * fix network protocol issue + integration tests * multiple improvements to integration test * replace all conn.Read() from tests * disable network-basic.yaml in windows * disable code protocol in win CI * fix bitwise login ps1-snippet.yaml * hide previous matcher events in flow * remove dead code+ update integration tests --------- Co-authored-by: Sandeep Singh <sandeep@projectdiscovery.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)" |