mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-02 00:33:27 +08:00
48 lines
1.3 KiB
YAML
48 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:
|
|
- 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: 490a0046304402204dd4543b0ba519424d42b73e5442225a8490adffff5eaa52fb0ce489262b1e8c0220557d46d9056203e7117a37571ace140e2782b86aaef45677866c39d60e31b74f:922c64590222798bb761d5b6d8e72950 |