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-03-27 19:34:47 +00:00
|
|
|
javascript:
|
|
|
|
- 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
|
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-06-08 16:02:17 +00:00
|
|
|
# digest: 490a00463044022007eee9d283a48c1c6910ddb17091ea8e47a4f1dfe9a2683d23323e2daf2e055302205a9ddfb5106429c74cead907b525db6db1733c2a283a69e32f0f6f7eb94c9866:922c64590222798bb761d5b6d8e72950
|