Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.217.173
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules_22 /
npm /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
node-gyp-bin
[ DIR ]
drwxr-xr-x
2026-05-11 17:54
npm
2.02
KB
-rwxr-xr-x
2026-03-24 04:05
npm-cli.js
53
B
-rwxr-xr-x
2026-03-30 00:00
npm-prefix.js
833
B
-rwxr-xr-x
2026-03-30 00:00
npm.cmd
538
B
-rw-r--r--
2026-03-24 04:05
npm.ps1
1.61
KB
-rw-r--r--
2026-03-24 04:05
npx
2.02
KB
-rwxr-xr-x
2026-03-24 04:05
npx-cli.js
2.85
KB
-rwxr-xr-x
2026-03-30 00:00
npx.cmd
538
B
-rw-r--r--
2026-03-24 04:05
npx.ps1
1.61
KB
-rw-r--r--
2026-03-24 04:05
Save
Rename
#!/usr/bin/env pwsh Set-StrictMode -Version 'Latest' $NODE_EXE="$PSScriptRoot/node.exe" if (-not (Test-Path $NODE_EXE)) { $NODE_EXE="$PSScriptRoot/node" } if (-not (Test-Path $NODE_EXE)) { $NODE_EXE="node" } $NPM_PREFIX_JS="$PSScriptRoot/node_modules/npm/bin/npm-prefix.js" $NPX_CLI_JS="$PSScriptRoot/node_modules/npm/bin/npx-cli.js" $NPM_PREFIX=(& $NODE_EXE $NPM_PREFIX_JS) if ($LASTEXITCODE -ne 0) { Write-Host "Could not determine Node.js install directory" exit 1 } $NPM_PREFIX_NPX_CLI_JS="$NPM_PREFIX/node_modules/npm/bin/npx-cli.js" if (Test-Path $NPM_PREFIX_NPX_CLI_JS) { $NPX_CLI_JS=$NPM_PREFIX_NPX_CLI_JS } if ($MyInvocation.ExpectingInput) { # takes pipeline input $input | & $NODE_EXE $NPX_CLI_JS $args } elseif (-not $MyInvocation.Line) { # used "-File" argument & $NODE_EXE $NPX_CLI_JS $args } else { # used "-Command" argument if (($MyInvocation | Get-Member -Name 'Statement') -and $MyInvocation.Statement) { $NPX_ORIGINAL_COMMAND = $MyInvocation.Statement } else { $NPX_ORIGINAL_COMMAND = ( [Management.Automation.InvocationInfo].GetProperty('ScriptPosition', [Reflection.BindingFlags] 'Instance, NonPublic') ).GetValue($MyInvocation).Text } $NODE_EXE = $NODE_EXE.Replace("``", "````") $NPX_CLI_JS = $NPX_CLI_JS.Replace("``", "````") $NPX_COMMAND_ARRAY = [Management.Automation.Language.Parser]::ParseInput($NPX_ORIGINAL_COMMAND, [ref] $null, [ref] $null). EndBlock.Statements.PipelineElements.CommandElements.Extent.Text $NPX_ARGS = ($NPX_COMMAND_ARRAY | Select-Object -Skip 1) -join ' ' Invoke-Expression "& `"$NODE_EXE`" `"$NPX_CLI_JS`" $NPX_ARGS" } exit $LASTEXITCODE