Namespace: pop3
Table of contents
Interfaces
Functions
Functions
IsPOP3
▸ IsPOP3(host, port): IsPOP3Response | null
IsPOP3 checks if a host is running a POP3 server.
Parameters
Returns
IsPOP3Response | 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): IsPOP3Response | null
IsPOP3 checks if a host is running a POP3 server.
| Name | Type |
|---|---|
host | string |
port | number |
IsPOP3Response | null
Example
const pop3 = require('nuclei/pop3');
const isPOP3 = pop3.IsPOP3('acme.com', 110);
log(toJSON(isPOP3));
Was this page helpful?