shell-cluster
Advanced tools
+1
-1
| { | ||
| "name": "shell-cluster", | ||
| "version": "1.0.10", | ||
| "version": "1.0.11", | ||
| "description": "Decentralized remote shell access via tunnels — Node.js server with node-pty and xterm-headless", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -12,6 +12,11 @@ #!/usr/bin/env node | ||
| // Fix spawn-helper permissions on macOS/Linux | ||
| try { | ||
| const helper = path.join(ptyDir, 'prebuilds', `${process.platform}-${process.arch}`, 'spawn-helper'); | ||
| if (fs.existsSync(helper)) fs.chmodSync(helper, 0o755); | ||
| } catch (e) {} | ||
| const helperPaths = [ | ||
| path.join(ptyDir, 'prebuilds', `${process.platform}-${process.arch}`, 'spawn-helper'), | ||
| path.join(ptyDir, 'build', 'Release', 'spawn-helper'), | ||
| ]; | ||
| for (const helper of helperPaths) { | ||
| try { | ||
| if (fs.existsSync(helper)) fs.chmodSync(helper, 0o755); | ||
| } catch (e) {} | ||
| } | ||
@@ -18,0 +23,0 @@ // Test if node-pty loads |
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
117599
0.09%3307
0.15%