Namespace: telnet
Table of contents
Interfaces
Functions
Functions
IsTelnet
▸ IsTelnet(host, port): IsTelnetResponse | null
IsTelnet checks if a host is running a Telnet server.
Parameters
Returns
IsTelnetResponse | null
Example
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
host, port): IsTelnetResponse | null
IsTelnet checks if a host is running a Telnet server.
| Name | Type |
|---|---|
host | string |
port | number |
IsTelnetResponse | null
Example
const telnet = require('nuclei/telnet');
const isTelnet = telnet.IsTelnet('acme.com', 23);
log(toJSON(isTelnet));
Was this page helpful?