Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Rssh2 - SSH远程自动化工具

v1.0.1

SSH远程自动化工具 - 会话管理、隧道、文件传输。使用场景:需要远程执行命令、建立SSH隧道、传输文件时。

0· 380·5 current·5 all-time
byYuKaiXu@ykaixu
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description, SKILL.md, and included code (index.js, session-manager.js, tunnel-manager.js, sftp-manager.js) are consistent: the package depends on ssh2 and implements session pooling, tunnels, and SFTP as advertised.
Instruction Scope
SKILL.md stays within SSH automation scope and warns about secrets. However the runtime code will read local files (private key paths, scan local directories for sync, read/write files during upload/download) — behavior is expected for this tool but is not declared as required config paths in metadata. The SKILL.md instructs running test.js which will connect to whatever credentials the user supplies.
Install Mechanism
No install spec is provided even though package.json lists dependency 'ssh2'. That mismatch means the platform or user must ensure dependencies are installed; this is an operational omission (not direct malware), but it could lead users to run the code in an environment lacking dependency verification.
Credentials
The skill declares no required env vars or config paths, yet the code accepts privateKey either as a path or as inlined content and will traverse local directories for sync. The requested privileges are not excessive for an SSH tool, but the skill can access arbitrary local files if the user passes paths — consider this when providing credentials or directory paths.
Persistence & Privilege
Skill is not always-enabled, does not request system-wide changes, and does not modify other skills or agent settings. Autonomous invocation remains permitted (platform default) but is not combined with other high-risk flags here.
What to consider before installing
This package appears to implement the advertised SSH features, but review before use: 1) Audit the code yourself (or have a dev review) — there are coding bugs (e.g., timeout handlers reference stream before it is defined) that can cause crashes. 2) Ensure dependencies are installed from a trusted registry (package.json lists ssh2 but no install spec was supplied). 3) Be cautious with credentials and file paths — the code will read private key files and scan local directories you pass; never run test.js with real credentials against sensitive hosts. 4) Because the tool can create dynamic SOCKS tunnels and port forwards, use it only on hosts/networks you control and avoid giving it root or highly privileged accounts. 5) If you will deploy this skill, run it in an isolated environment first (sandbox/container) and consider vendor-signing or integrity checks on npm packages.

Like a lobster shell, security has layers — review code before you run it.

automationvk975ts2smp4qcz4n2mz714fqf981zttrlatestvk975ts2smp4qcz4n2mz714fqf981zttrremotevk975ts2smp4qcz4n2mz714fqf981zttrsftpvk975ts2smp4qcz4n2mz714fqf981zttrsshvk975ts2smp4qcz4n2mz714fqf981zttrtunnelvk975ts2smp4qcz4n2mz714fqf981zttr

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🔐 Clawdis

SKILL.md

Rssh2 - SSH远程自动化工具

基于 ssh2 的 SSH 远程自动化工具,提供会话管理、隧道管理、文件传输等功能。

⚠️ 安全提示

重要: 请勿在代码中硬编码敏感信息(密码、私钥内容等)。建议:

  • 使用环境变量存储敏感配置
  • 使用密钥文件路径而非密钥内容
  • 将 test.js 中的配置替换为实际配置后再运行

功能特性

🔐 会话管理

  • 连接池管理(复用连接,提升性能)
  • 自动重连机制
  • 心跳保持
  • 命令队列
  • 并发控制

🌉 隧道管理

  • 本地端口转发
  • 远程端口转发
  • 动态端口转发(SOCKS代理)
  • 多隧道管理
  • 自动重连

📁 文件传输

  • SFTP 上传/下载
  • 目录同步
  • 文件监控
  • 断点续传

⚙️ 配置管理

  • 多主机配置
  • 密钥管理
  • 环境变量支持
  • 配置文件热加载

快速开始

基本连接

const { Rssh2 } = require('./index.js');

const rssh2 = new Rssh2({
  host: 'bg.dlna.net',
  port: 38022,
  username: 'root',
  privateKey: '/home/yupeng/.ssh/id_ed25519'
});

// 执行命令
const result = await rssh2.exec('uptime');
console.log(result.output);

会话管理

// 创建会话管理器
const sessionManager = rssh2.getSessionManager();

// 执行多个命令(复用连接)
const results = await Promise.all([
  sessionManager.exec('uptime'),
  sessionManager.exec('df -h'),
  sessionManager.exec('free -m')
]);

// 关闭会话
await sessionManager.close();

隧道管理

// 本地端口转发
const tunnel = await rssh2.tunnel.local({
  localPort: 8080,
  remoteHost: 'localhost',
  remotePort: 80
});

console.log('隧道已建立: localhost:8080 -> remote:80');

// 关闭隧道
await tunnel.close();

文件传输

// 上传文件
await rssh2.sftp.upload('./local.txt', '/remote/path/file.txt');

// 下载文件
await rssh2.sftp.download('/remote/path/file.txt', './local.txt');

// 同步目录
await rssh2.sftp.sync('./local-dir', '/remote/dir');

配置选项

连接配置

{
  host: 'example.com',        // 主机地址
  port: 22,                   // SSH端口
  username: 'user',           // 用户名
  password: 'pass',           // 密码(可选)
  privateKey: '/path/to/key', // 私钥路径(可选)
  passphrase: 'keypass',      // 私钥密码(可选)
  timeout: 10000,             // 连接超时(毫秒)
  keepaliveInterval: 30000    // 心跳间隔(毫秒)
}

会话管理器配置

{
  maxPoolSize: 5,             // 最大连接池大小
  maxConcurrent: 10,          // 最大并发命令数
  commandTimeout: 30000,      // 命令超时(毫秒)
  retryAttempts: 3,           // 重试次数
  retryDelay: 1000            // 重试延迟(毫秒)
}

隧道配置

{
  localPort: 8080,            // 本地端口
  remoteHost: 'localhost',    // 远程主机
  remotePort: 80,             // 远程端口
  autoReconnect: true,        // 自动重连
  reconnectDelay: 5000        // 重连延迟(毫秒)
}

API 参考

Rssh2 主类

constructor(config)

创建 Rssh2 实例

exec(command, options?)

执行单个命令

getSessionManager()

获取会话管理器实例

getTunnelManager()

获取隧道管理器实例

getSftpManager()

获取 SFTP 管理器实例

connect()

建立连接

disconnect()

断开连接

SessionManager

exec(command, options?)

执行命令(使用连接池)

execMultiple(commands)

执行多个命令

close()

关闭所有连接

TunnelManager

local(config)

创建本地端口转发

remote(config)

创建远程端口转发

dynamic(config)

创建动态端口转发(SOCKS)

closeAll()

关闭所有隧道

SftpManager

upload(localPath, remotePath)

上传文件

download(remotePath, localPath)

下载文件

sync(localDir, remoteDir)

同步目录

list(path)

列出文件

delete(path)

删除文件

使用场景

1. 远程运维

const rssh2 = new Rssh2(config);

// 检查服务状态
const status = await rssh2.exec('systemctl status nginx');

// 重启服务
await rssh2.exec('systemctl restart nginx');

// 查看日志
const logs = await rssh2.exec('tail -n 100 /var/log/nginx/access.log');

2. 数据库隧道

// 创建数据库隧道
const tunnel = await rssh2.tunnel.local({
  localPort: 3306,
  remoteHost: 'localhost',
  remotePort: 3306
});

// 现在可以通过 localhost:3306 访问远程数据库

3. 文件部署

// 上传应用文件
await rssh2.sftp.upload('./app.zip', '/tmp/app.zip');

// 解压
await rssh2.exec('cd /var/www && unzip -o /tmp/app.zip');

// 重启服务
await rssh2.exec('systemctl restart app');

4. 批量操作

const session = rssh2.getSessionManager();

// 并发执行多个命令
const results = await session.execMultiple([
  'uptime',
  'df -h',
  'free -m',
  'ps aux | head -20'
]);

console.log(results);

安全建议

  1. 使用密钥认证 - 比密码更安全
  2. 限制用户权限 - 不要使用 root 账号
  3. 启用防火墙 - 限制 SSH 访问
  4. 定期更新密钥 - 轮换 SSH 密钥
  5. 日志审计 - 记录所有操作

故障排查

连接失败

try {
  await rssh2.connect();
} catch (error) {
  console.error('连接失败:', error.message);
  // 检查主机、端口、认证信息
}

命令超时

const result = await rssh2.exec('long-running-command', {
  timeout: 60000  // 60秒超时
});

隧道断开

const tunnel = await rssh2.tunnel.local(config, {
  autoReconnect: true,
  reconnectDelay: 5000
});

依赖

  • ssh2 ^1.17.0

许可证

MIT

Files

8 total
Select a file
Select a file to preview.

Comments

Loading comments…