pop3

(pop3).Pop3Client

Pop3Client is a minimal POP3 client for nuclei scripts Kind: inner class of pop3

pop3Client.IsPOP3(host, port) ⇒ IsPOP3Response

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

(pop3).IsPOP3Response : object

IsPOP3Response is an object containing the response of the IsPOP3 check. Kind: inner typedef of pop3