oracle

(oracle).OracleClient

OracleClient is a minimal Oracle client for nuclei scripts.

Kind: inner class of oracle

oracleClient.IsOracle(host, port) ⇒ IsOracleResponse

IsOracle checks if a host is running an Oracle server.

Kind: instance method of OracleClient
Returns: IsOracleResponse - - The response from the Oracle server.
Throws:

  • error - The error encountered during the check.
ParamTypeDescription
hoststringThe host to check.
portintThe port to check.

Example

let m = require('nuclei/oracle');
let c = m.OracleClient();
let response = c.IsOracle('localhost', 1521);

(oracle).IsOracleResponse : object

IsOracleResponse is an object containing the response from the Oracle server.

Kind: inner typedef of oracle