1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-24 08:16:02 +02:00

Enforce conventions

This commit is contained in:
Andrea Cardaci 2020-10-24 12:43:55 +02:00
parent 373f57fc18
commit 3409aa0949
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
---
functions:
shell:
- code: ghc -e 'System.Process.callCommand "/bin/bash"'
- code: ghc -e 'System.Process.callCommand "/bin/sh"'
sudo:
- code: sudo ghc -e 'System.Process.callCommand "/bin/bash"'
- code: sudo ghc -e 'System.Process.callCommand "/bin/sh"'
---

View File

@ -3,9 +3,9 @@ functions:
shell:
- code: |
ghci
Prelude> System.Process.callCommand "/bin/bash"
System.Process.callCommand "/bin/sh"
sudo:
- code: |
sudo ghci
Prelude> System.Process.callCommand "/bin/bash"
System.Process.callCommand "/bin/sh"
---