这是有效的 /usr/bin/sftp 调用吗?

发布于 2024-10-18 15:53:12 字数 275 浏览 1 评论 0原文

我在我前段时间开始管理的应用程序中发现了这个调用:

/usr/bin/sftp -b - -o Port=22 [电子邮件受保护]

可疑的是 -b - -o ...不是吗?我认为这里缺少参数...

谢谢

I found this call in an app I started managing some time ago:

/usr/bin/sftp -b - -o Port=22 [email protected]

Whats suspicious is -b - -o ... isnt it? I think the param is missing here...

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坚持沉默 2024-10-25 15:53:13

我不认为这有什么可疑之处。

-b - 只是从标准输入读取脚本,我们无法从您的示例中判断它来自哪里。它可能会被重定向或者可能只是与用户交互。 - 文件名在表示标准输入时非常普遍。例如,在 Linux 下尝试 cat -

sftp 联机帮助页清楚地说明了这一点:

批处理文件“-”可用于指示标准输入。

-o Port=22 只是将 SSH 选项设置为使用端口 22(通常是默认端口)反正)。

I don't believe there's anything suspicious about it.

The -b - is simply reading the script from standard input which we can't tell from your sample where it's coming from. It may be redirected or it may just interact with the user. The - file name is quite prevalent at meaning standard input. Try cat - under Linux for example.

The sftp manpage states this clearly:

A batchfile of '-' may be used to indicate standard input.

The -o Port=22 is simply setting the SSH option to use port 22 (which is usually the default anyway).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文