1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-07 20:50:38 +02:00

Add gcore

Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
This commit is contained in:
Wirzka 2021-08-28 12:47:54 +02:00 committed by GitHub
parent bbb694faaf
commit 1468b6c2bd
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

10
_gtfobins/gcore.md Normal file
View File

@ -0,0 +1,10 @@
---
description: It can be used to generate core dumps of running processes. Such files often contains sensitive information such as open files content, cryptographic keys, passwords, etc. This command produces a binary file named `core.$PID`, that is then often filtered with `strings` to narrow down relevant information.
functions:
file-read:
- code: gcore $PID
sudo:
- code: sudo gcore $PID
suid:
- code: ./gcore $PID
---