pop3~ Pop3Client

Pop3Client is a minimal POP3 client for nuclei scripts

Constructor

new Pop3Client()

Methods

IsPOP3(host, port) → {IsPOP3Response}

IsPOP3 checks if a host is running a POP3 server
Parameters:
NameTypeDescription
hoststringThe host to check.
portnumberThe port to check.
Throws:
- The error encountered during the check.
Type
error
Returns:
- The response of the check.
Type: 
IsPOP3Response
Example
let m = require('nuclei/pop3');
let c = m.Pop3Client();
let response = c.IsPOP3('localhost', 110);