48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
id: pgsql-list-users
|
|
|
|
info:
|
|
name: PostgreSQL List Users
|
|
author: pussycat0x
|
|
severity: high
|
|
description: |
|
|
List users from Postgresql Database.
|
|
reference:
|
|
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-list-users
|
|
metadata:
|
|
shodan-query: product:"PostgreSQL"
|
|
verified: true
|
|
tags: js,network,postgresql,enum,authenticated
|
|
|
|
javascript:
|
|
- code: |
|
|
const postgres = require('nuclei/postgres');
|
|
const client = new postgres.PGClient;
|
|
connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "SELECT usename FROM pg_user");
|
|
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[].usename'
|
|
# digest: 4a0a00473045022100ed70655d0bd422a231316091be352722496025e5c5540dada5c1510665f716b202203fa4316e97b9e336c396ca8707a918a836b5be7c93a33eb8237625b09263bad1:922c64590222798bb761d5b6d8e72950 |