Oracle.OracleClient
Class: OracleClient
oracle.OracleClient
OracleClient is a minimal Oracle client for nuclei scripts.
Example
const oracle = require('nuclei/oracle');
const client = new oracle.Client();
Table of contents
Constructors
Methods
Constructors
constructor
• new OracleClient(): OracleClient
Returns
Defined in
oracle.ts:15
Methods
IsOracle
▸ IsOracle(host
, port
): IsOracleResponse
IsOracle checks if a host is running an Oracle server
Parameters
Name | Type |
---|---|
host | string |
port | number |
Returns
Example
const oracle = require('nuclei/oracle');
const isOracle = oracle.IsOracle('acme.com', 1521);
log(toJSON(isOracle));
Defined in
oracle.ts:25
Was this page helpful?