Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
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
2024-03-12 22:00
corepack
284
B
-rwxr-xr-x
2022-09-23 04:40
corepack.cmd
180
B
-rwxr-xr-x
2022-09-23 04:40
corepack.ps1
789
B
-rwxr-xr-x
2022-04-07 20:19
npm
274
B
-rwxr-xr-x
2022-09-23 04:40
npm.cmd
170
B
-rwxr-xr-x
2022-09-23 04:40
npm.ps1
769
B
-rwxr-xr-x
2022-04-07 20:19
npx
274
B
-rwxr-xr-x
2022-09-23 04:40
npx.cmd
170
B
-rwxr-xr-x
2022-09-23 04:40
npx.ps1
769
B
-rwxr-xr-x
2022-04-07 20:19
pnpm
276
B
-rwxr-xr-x
2022-09-23 04:40
pnpm.cmd
172
B
-rwxr-xr-x
2022-09-23 04:40
pnpm.ps1
773
B
-rwxr-xr-x
2022-04-07 20:19
pnpx
276
B
-rwxr-xr-x
2022-09-23 04:40
pnpx.cmd
172
B
-rwxr-xr-x
2022-09-23 04:40
pnpx.ps1
773
B
-rwxr-xr-x
2022-04-07 20:19
yarn
276
B
-rwxr-xr-x
2022-09-23 04:40
yarn.cmd
172
B
-rwxr-xr-x
2022-09-23 04:40
yarn.ps1
773
B
-rwxr-xr-x
2022-04-07 20:19
yarnpkg
282
B
-rwxr-xr-x
2022-09-23 04:40
yarnpkg.cmd
178
B
-rwxr-xr-x
2022-09-23 04:40
yarnpkg.ps1
785
B
-rwxr-xr-x
2022-04-07 20:19
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/corepack.js" $args } else { & "$basedir/node$exe" "$basedir/../dist/corepack.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/../dist/corepack.js" $args } else { & "node$exe" "$basedir/../dist/corepack.js" $args } $ret=$LASTEXITCODE } exit $ret