Files
nuclei-templates/javascript/enumeration/pgsql/pgsql-default-db.yaml
pussycat0x 7c5f317717 Update
2024-03-29 13:29:52 +05:30

52 lines
1.2 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"
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