Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
corepack /
shims /
nodewin /
Delete
Unzip
Name
Size
Permission
Date
Action
corepack
322
B
-rw-r--r--
2022-10-11 10:59
corepack.cmd
218
B
-rw-r--r--
2022-10-11 10:59
corepack.ps1
865
B
-rw-r--r--
2022-10-11 10:59
npm
312
B
-rw-r--r--
2022-10-11 10:59
npm.cmd
208
B
-rw-r--r--
2022-10-11 10:59
npm.ps1
845
B
-rw-r--r--
2022-10-11 10:59
npx
312
B
-rw-r--r--
2022-10-11 10:59
npx.cmd
208
B
-rw-r--r--
2022-10-11 10:59
npx.ps1
845
B
-rw-r--r--
2022-10-11 10:59
pnpm
314
B
-rw-r--r--
2022-10-11 10:59
pnpm.cmd
210
B
-rw-r--r--
2022-10-11 10:59
pnpm.ps1
849
B
-rw-r--r--
2022-10-11 10:59
pnpx
314
B
-rw-r--r--
2022-10-11 10:59
pnpx.cmd
210
B
-rw-r--r--
2022-10-11 10:59
pnpx.ps1
849
B
-rw-r--r--
2022-10-11 10:59
yarn
314
B
-rw-r--r--
2022-10-11 10:59
yarn.cmd
210
B
-rw-r--r--
2022-10-11 10:59
yarn.ps1
849
B
-rw-r--r--
2022-10-11 10:59
yarnpkg
320
B
-rw-r--r--
2022-10-11 10:59
yarnpkg.cmd
216
B
-rw-r--r--
2022-10-11 10:59
yarnpkg.ps1
861
B
-rw-r--r--
2022-10-11 10:59
Save
Rename
#!/usr/bin/env pwsh $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent $exe="" if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { # Fix case when both the Windows and Linux builds of Node # are installed in the same directory $exe=".exe" } $ret=0 if (Test-Path "$basedir/node$exe") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "$basedir/node$exe" "$basedir/node_modules/corepack/dist/pnpm.js" $args } else { & "$basedir/node$exe" "$basedir/node_modules/corepack/dist/pnpm.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/node_modules/corepack/dist/pnpm.js" $args } else { & "node$exe" "$basedir/node_modules/corepack/dist/pnpm.js" $args } $ret=$LASTEXITCODE } exit $ret