2024-03-27 19:34:47 +00:00
|
|
|
id: pgsql-version-detect
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: Postgresql Version - Detect
|
|
|
|
author: pussycat0x
|
2024-03-29 07:59:52 +00:00
|
|
|
severity: high
|
2024-03-27 19:34:47 +00:00
|
|
|
description: |
|
2024-03-29 07:59:52 +00:00
|
|
|
Detect Postgresql Version.
|
2024-03-27 19:34:47 +00:00
|
|
|
reference:
|
2024-03-29 07:59:52 +00:00
|
|
|
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-version
|
2024-03-27 19:34:47 +00:00
|
|
|
metadata:
|
2024-04-01 08:19:09 +00:00
|
|
|
verified: true
|
2024-06-07 10:04:29 +00:00
|
|
|
max-request: 8
|
|
|
|
shodan-query: "product:\"PostgreSQL\""
|
2024-03-29 07:59:52 +00:00
|
|
|
tags: js,network,postgresql,enum,authenticated
|
2024-07-10 12:08:01 +00:00
|
|
|
|
2024-03-27 19:34:47 +00:00
|
|
|
javascript:
|
2024-06-14 14:56:22 +00:00
|
|
|
- pre-condition: |
|
2024-07-10 12:08:01 +00:00
|
|
|
isPortOpen(Host,Port);
|
2024-06-14 14:56:22 +00:00
|
|
|
code: |
|
2024-03-27 19:34:47 +00:00
|
|
|
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
|
2024-03-29 07:59:52 +00:00
|
|
|
- admin
|
2024-03-27 19:34:47 +00:00
|
|
|
password:
|
|
|
|
- postgres
|
2024-03-29 07:59:52 +00:00
|
|
|
-
|
|
|
|
- 123
|
|
|
|
- amber
|
|
|
|
database:
|
|
|
|
- postgres
|
2024-03-27 19:34:47 +00:00
|
|
|
|
2024-03-29 13:08:05 +00:00
|
|
|
attack: clusterbomb
|
2024-03-29 13:05:02 +00:00
|
|
|
|
2024-03-27 19:34:47 +00:00
|
|
|
extractors:
|
|
|
|
- type: json
|
|
|
|
json:
|
2024-03-29 13:05:02 +00:00
|
|
|
- '.Rows[0].version'
|
2024-07-10 12:45:27 +00:00
|
|
|
# digest: 490a0046304402203e89ba570cbf1641137211ed4c440bb25ca7b51a87096c84701113fc279e5dc602204f4c089432d6f7fe651ea17f61ccddc0d396789b24a47e41d1433280d98210a8:922c64590222798bb761d5b6d8e72950
|