Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.141.199.214
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
changelog.js
3
KB
-rw-r--r--
2022-01-10 12:20
clean-old.sh
4.17
KB
-rwxr-xr-x
2022-01-10 12:20
dep-update
294
B
-rwxr-xr-x
2022-01-10 12:20
dev-dep-update
292
B
-rwxr-xr-x
2022-01-10 12:20
docs-build.js
825
B
-rw-r--r--
2022-01-10 12:20
gen-changelog
420
B
-rwxr-xr-x
2022-01-10 12:20
gen-dev-ignores.js
350
B
-rw-r--r--
2022-01-10 12:20
install.sh
5.47
KB
-rwxr-xr-x
2022-01-10 12:20
maketest
1.8
KB
-rwxr-xr-x
2022-01-10 12:20
pr
3.96
KB
-rwxr-xr-x
2022-01-10 12:20
publish-tag.js
151
B
-rw-r--r--
2022-01-10 12:20
release.sh
889
B
-rw-r--r--
2022-01-10 12:20
relocate.sh
673
B
-rwxr-xr-x
2022-01-10 12:20
update-authors.sh
197
B
-rwxr-xr-x
2022-01-10 12:20
update-dist-tags.js
3.46
KB
-rw-r--r--
2022-01-10 12:20
Save
Rename
#!/usr/bin/env bash # script for creating a zip and tarball for inclusion in node unset CDPATH set -e rm -rf release *.tgz || true rm node_modules/node-gyp/gyp/pylib/gyp/*.pyc || true rm node_modules/node-gyp/gyp/pylib/gyp/generator/*.pyc || true mkdir release node ./bin/npm-cli.js pack --loglevel error >/dev/null mv *.tgz release cd release tar xzf *.tgz cp ../.npmrc package/ cp -r ../tap-snapshots package/ cp -r ../test package/ mkdir node_modules mv package node_modules/npm # make the zip for windows users cp node_modules/npm/bin/*.cmd . zipname=npm-$(node ../bin/npm-cli.js -v).zip zip -q -9 -r -X "$zipname" *.cmd node_modules # make the tar for node's deps cd node_modules tarname=npm-$(node ../../bin/npm-cli.js -v).tgz tar czf "$tarname" npm cd .. mv "node_modules/$tarname" . rm -rf *.cmd rm -rf node_modules cd .. echo "release/$tarname" echo "release/$zipname"