50 lines
1.3 KiB
YAML
50 lines
1.3 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:
|
|
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 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: 4a0a004730450221009a05acfa94a9b968805487fde6d1984d5a253a25643aa0337dc3be2ca9df8aad02201ee397282381f3d413f0db620a3854779fa424a142d01bdd38fc9e20cbe8b3fb:922c64590222798bb761d5b6d8e72950 |