2024-03-27 19:34:47 +00:00
|
|
|
id: pgsql-default-db
|
|
|
|
|
|
|
|
info:
|
|
|
|
name: Postgresql Default Database - Enumeration
|
|
|
|
author: pussycat0x
|
|
|
|
severity: high
|
|
|
|
description: |
|
2024-03-29 07:59:52 +00:00
|
|
|
postgres is the default database you will connect to before you have created any other databases.
|
2024-03-27 19:34:47 +00:00
|
|
|
reference:
|
2024-03-29 07:59:52 +00:00
|
|
|
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-database-name
|
2024-03-27 19:34:47 +00:00
|
|
|
metadata:
|
|
|
|
shodan-query: product:"PostgreSQL"
|
2024-03-29 07:59:52 +00:00
|
|
|
tags: js,network,postgresql,authenticated
|
2024-03-27 19:34:47 +00:00
|
|
|
|
|
|
|
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
|
2024-03-29 07:59:52 +00:00
|
|
|
- admin
|
|
|
|
password:
|
|
|
|
- postgres
|
|
|
|
-
|
|
|
|
- 123
|
|
|
|
- amber
|
2024-03-27 19:34:47 +00:00
|
|
|
database:
|
|
|
|
- foresight
|
|
|
|
- postgres
|
|
|
|
- template0
|
|
|
|
- template1
|
|
|
|
- test
|
2024-03-29 07:59:52 +00:00
|
|
|
|
2024-03-27 19:34:47 +00:00
|
|
|
attack: clusterbomb
|
|
|
|
|
|
|
|
matchers:
|
|
|
|
- type: dsl
|
|
|
|
dsl:
|
|
|
|
- "success == true"
|
|
|
|
- "response == true"
|
|
|
|
condition: and
|