2024-03-28 01:04:47 +05:30
|
|
|
id: pgsql-default-db
|
|
|
|
|
|
|
|
|
|
info:
|
|
|
|
|
name: Postgresql Default Database - Enumeration
|
|
|
|
|
author: pussycat0x
|
|
|
|
|
severity: high
|
|
|
|
|
description: |
|
2024-03-29 13:29:52 +05:30
|
|
|
postgres is the default database you will connect to before you have created any other databases.
|
2024-03-28 01:04:47 +05:30
|
|
|
reference:
|
2024-03-29 13:29:52 +05:30
|
|
|
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-database-name
|
2024-03-28 01:04:47 +05:30
|
|
|
metadata:
|
2024-04-01 13:49:09 +05:30
|
|
|
verified: true
|
2025-05-27 10:39:47 +08:00
|
|
|
max-request: 40
|
|
|
|
|
shodan-query: "product:\"PostgreSQL\""
|
2025-10-17 14:17:02 +02:00
|
|
|
tags: js,network,postgresql,authenticated,enum,discovery
|
2024-07-10 17:38:01 +05:30
|
|
|
|
2024-03-28 01:04:47 +05:30
|
|
|
javascript:
|
2024-06-14 16:56:22 +02:00
|
|
|
- pre-condition: |
|
2024-07-10 17:38:01 +05:30
|
|
|
isPortOpen(Host,Port);
|
2024-06-14 16:56:22 +02:00
|
|
|
code: |
|
2024-03-28 01:04:47 +05:30
|
|
|
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 13:29:52 +05:30
|
|
|
- admin
|
|
|
|
|
password:
|
|
|
|
|
- postgres
|
|
|
|
|
-
|
|
|
|
|
- 123
|
2024-03-29 13:32:40 +05:30
|
|
|
- amber
|
2024-03-28 01:04:47 +05:30
|
|
|
database:
|
|
|
|
|
- foresight
|
|
|
|
|
- postgres
|
|
|
|
|
- template0
|
|
|
|
|
- template1
|
|
|
|
|
- test
|
2024-03-29 13:29:52 +05:30
|
|
|
|
2024-03-28 01:04:47 +05:30
|
|
|
attack: clusterbomb
|
|
|
|
|
|
|
|
|
|
matchers:
|
|
|
|
|
- type: dsl
|
|
|
|
|
dsl:
|
|
|
|
|
- "success == true"
|
|
|
|
|
- "response == true"
|
2024-03-29 13:32:40 +05:30
|
|
|
condition: and
|
2025-10-26 16:17:34 +00:00
|
|
|
# digest: 4b0a00483046022100c46f3bda20dc3fcfa66ebfe6bf157ded278acbf64a81f8ff33fe01a1a646bcb3022100d9d6f8f668a5fc92c90a8a7c30fc452c42ae422f13aba73928b73226bf28f8b1:922c64590222798bb761d5b6d8e72950
|