54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
id: pgsql-default-db
|
|
|
|
info:
|
|
name: Postgresql Default Database - Enumeration
|
|
author: pussycat0x
|
|
severity: high
|
|
description: |
|
|
postgres is the default database you will connect to before you have created any other databases.
|
|
reference:
|
|
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-database-name
|
|
metadata:
|
|
shodan-query: product:"PostgreSQL"
|
|
verified: true
|
|
tags: js,network,postgresql,authenticated
|
|
|
|
javascript:
|
|
- code: |
|
|
const postgres = require('nuclei/postgres');
|
|
const client = new postgres.PGClient;
|
|
connected = client.ConnectWithDB(Host, Port, User, Pass, Db);
|
|
connected ;
|
|
|
|
args:
|
|
Host: "{{Host}}"
|
|
Port: 5432
|
|
User: "{{usernames}}"
|
|
Pass: "{{password}}"
|
|
Db: "{{database}}"
|
|
|
|
payloads:
|
|
usernames:
|
|
- postgres
|
|
- admin
|
|
password:
|
|
- postgres
|
|
-
|
|
- 123
|
|
- amber
|
|
database:
|
|
- foresight
|
|
- postgres
|
|
- template0
|
|
- template1
|
|
- test
|
|
|
|
attack: clusterbomb
|
|
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- "success == true"
|
|
- "response == true"
|
|
condition: and
|
|
# digest: 4a0a0047304502203a5762da2f7781d9727cae67e5900dd3bd168a07992d50f9e1ad94a7b9fc5227022100c06431d19b12fb78e9a05ec0750093fe348f05cef960b43450728e98a86c26e2:922c64590222798bb761d5b6d8e72950 |