Methods
IsOracle(host, port) → {IsOracleResponse}
IsOracle checks if a host is running an Oracle server.
Parameters:
Name | Type | Description |
---|---|---|
host | string | The host to check. |
port | int | The port to check. |
- Source
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);