Merge pull request #8426 from projectdiscovery/pussycat0x-patch-6

Oracle TNS Listener - Detect
patch-1
Dhiyaneshwaran 2023-10-25 12:09:44 +05:30 committed by GitHub
commit d3964cb908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
id: oracle-tns-listener
info:
name: Oracle TNS Listener - Detect
author: pussycat0x
severity: info
description: |
Oracle clients communicate with the database using the Transparent Network Substrate (TNS) protocol. When the listener receives a connection request (tcp port 1521, by default), it starts up a new database process and establishes a connection between the client and the database.
reference:
- https://www.tenable.com/plugins/nessus/110053
metadata:
verified: true
shodan-query: product:"Oracle TNS Listener"
tags: js,oracle,tns,network
javascript:
- code: |
var m = require("nuclei/oracle");
var c = m.OracleClient();
var response = c.IsOracle(Host, Port);
to_json(response);
args:
Host: "{{Host}}"
Port: "1521"
extractors:
- type: regex
name: Version
regex:
- 'Oracle TNS Listener Version:([0-9.]+)'