mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
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,discovery
|
|
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: 4b0a00483046022100c7c676f112de53d4530e9dd6bab040faa7a23afb624cf4a2fa7c48e313f96ee0022100c12cb6c40164d2f3b92d01fa400bb05749261efc06a715cfc44b1e205c1ee32a:922c64590222798bb761d5b6d8e72950 |