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 /
Delete
Unzip
Name
Size
Permission
Date
Action
nodewin
[ DIR ]
drwxr-xr-x
2025-04-07 20:36
corepack
284
B
-rwxr-xr-x
2022-10-11 10:59
corepack.cmd
180
B
-rwxr-xr-x
2022-10-11 10:59
corepack.ps1
789
B
-rwxr-xr-x
2022-10-11 10:59
npm
274
B
-rwxr-xr-x
2022-10-11 10:59
npm.cmd
170
B
-rwxr-xr-x
2022-10-11 10:59
npm.ps1
769
B
-rwxr-xr-x
2022-10-11 10:59
npx
274
B
-rwxr-xr-x
2022-10-11 10:59
npx.cmd
170
B
-rwxr-xr-x
2022-10-11 10:59
npx.ps1
769
B
-rwxr-xr-x
2022-10-11 10:59
pnpm
276
B
-rwxr-xr-x
2022-10-11 10:59
pnpm.cmd
172
B
-rwxr-xr-x
2022-10-11 10:59
pnpm.ps1
773
B
-rwxr-xr-x
2022-10-11 10:59
pnpx
276
B
-rwxr-xr-x
2022-10-11 10:59
pnpx.cmd
172
B
-rwxr-xr-x
2022-10-11 10:59
pnpx.ps1
773
B
-rwxr-xr-x
2022-10-11 10:59
yarn
276
B
-rwxr-xr-x
2022-10-11 10:59
yarn.cmd
172
B
-rwxr-xr-x
2022-10-11 10:59
yarn.ps1
773
B
-rwxr-xr-x
2022-10-11 10:59
yarnpkg
282
B
-rwxr-xr-x
2022-10-11 10:59
yarnpkg.cmd
178
B
-rwxr-xr-x
2022-10-11 10:59
yarnpkg.ps1
785
B
-rwxr-xr-x
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/../dist/pnpm.js" $args } else { & "$basedir/node$exe" "$basedir/../dist/pnpm.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/../dist/pnpm.js" $args } else { & "node$exe" "$basedir/../dist/pnpm.js" $args } $ret=$LASTEXITCODE } exit $ret