mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2026-02-05 18:23:35 +08:00
* 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>
8 lines
389 B
Go
8 lines
389 B
Go
// Package telnetmini is a library for interacting with Telnet servers.
|
|
// it supports
|
|
// - Basic Authentication phase (username/password)
|
|
// - Encryption detection via encryption negotiation packet
|
|
// - Minimal porting of https://github.com/nmap/nmap/blob/master/nselib/smbauth.lua SMB via NTLM negotiations
|
|
// (TNAP Login Packet + Raw NTLM response parsing)
|
|
package telnetmini
|