Files
nuclei/integration_tests/protocols/javascript/telnet-auth-test.yaml
Mzack9999 dbeebdaa1d adding telnet login + crypto (#6419)
* adding telnet login + crypto

* smbauth lib porting + ntlm parsing over telnet

* gen lib

* adding telnet test

* adding breakout after max iterations

* fix(utils): broken pkt creation & impl `Create{LN,NT}Response`

Signed-off-by: Dwi Siswanto <git@dw1.io>

* chore(utils): satisfy lints

Signed-off-by: Dwi Siswanto <git@dw1.io>

---------

Signed-off-by: Dwi Siswanto <git@dw1.io>
Co-authored-by: Dwi Siswanto <git@dw1.io>
2026-01-02 06:28:46 +07:00

29 lines
506 B
YAML

id: telnet-auth-test
info:
name: Telnet Authentication Test
author: pdteam
severity: info
metadata:
shodan-query: port:23
javascript:
- code: |
var m = require("nuclei/telnet");
var c = m.TelnetClient();
c.Connect(Host, Port, User, Password);
args:
Host: "{{Host}}"
Port: "23"
User: "dev"
Password: "mysecret"
matchers:
- type: dsl
dsl:
- "response == true"
- "success == true"
condition: and