oracle~ OracleClient

OracleClient is a minimal Oracle client for nuclei scripts.

Constructor

new OracleClient()

Methods

IsOracle(host, port) → {IsOracleResponse}

IsOracle checks if a host is running an Oracle server.
Parameters:
NameTypeDescription
hoststringThe host to check.
portintThe port to check.
Throws:
- The error encountered during the check.
Type
error
Returns:
- The response from the Oracle server.
Type: 
IsOracleResponse
Example
let m = require('nuclei/oracle');
let c = m.OracleClient();
let response = c.IsOracle('localhost', 1521);