51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
id: pgsql-version-detect
|
|
|
|
info:
|
|
name: Postgresql Version - Detect
|
|
author: pussycat0x
|
|
severity: high
|
|
description: |
|
|
Detect Postgresql Version.
|
|
reference:
|
|
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-version
|
|
metadata:
|
|
verified: true
|
|
max-request: 8
|
|
shodan-query: "product:\"PostgreSQL\""
|
|
tags: js,network,postgresql,enum,authenticated
|
|
|
|
javascript:
|
|
- pre-condition: |
|
|
isPortOpen(Host,Port);
|
|
code: |
|
|
const postgres = require('nuclei/postgres');
|
|
const client = new postgres.PGClient;
|
|
connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "select version();");
|
|
Export(connected);
|
|
|
|
args:
|
|
Host: "{{Host}}"
|
|
Port: 5432
|
|
User: "{{usernames}}"
|
|
Pass: "{{password}}"
|
|
Db: "{{database}}"
|
|
|
|
payloads:
|
|
usernames:
|
|
- postgres
|
|
- admin
|
|
password:
|
|
- postgres
|
|
-
|
|
- 123
|
|
- amber
|
|
database:
|
|
- postgres
|
|
|
|
attack: clusterbomb
|
|
|
|
extractors:
|
|
- type: json
|
|
json:
|
|
- '.Rows[0].version'
|
|
# digest: 490a0046304402203e89ba570cbf1641137211ed4c440bb25ca7b51a87096c84701113fc279e5dc602204f4c089432d6f7fe651ea17f61ccddc0d396789b24a47e41d1433280d98210a8:922c64590222798bb761d5b6d8e72950 |