All Projects → ba0f3 → ssh2.nim

ba0f3 / ssh2.nim

Licence: MIT License
Async SSH, SCP and SFTP client for Nim, using libssh2 wrapper [WIP]

Programming Languages

nim
578 projects

Projects that are alternatives of or similar to ssh2.nim

Sshj
ssh, scp and sftp for java
Stars: ✭ 2,016 (+11758.82%)
Mutual labels:  ssh, sftp, scp
Wolfssh
wolfSSH is a small, fast, portable SSH implementation, including support for SCP and SFTP.
Stars: ✭ 142 (+735.29%)
Mutual labels:  ssh, sftp, scp
Lssh
List selection type alternative ssh/scp/sftp client. Pure Go.
Stars: ✭ 110 (+547.06%)
Mutual labels:  ssh, sftp, scp
Libssh2
the SSH library
Stars: ✭ 743 (+4270.59%)
Mutual labels:  ssh, sftp, scp
Ssh-Pascal
Delphi ssh library wrapping libssh2
Stars: ✭ 42 (+147.06%)
Mutual labels:  sftp, scp, libssh2
Sync
syncs your local folder with remote folder using scp
Stars: ✭ 293 (+1623.53%)
Mutual labels:  ssh, sftp, scp
S3 Sftp Proxy
An AWS S3 gateway proxying SFTP connections.
Stars: ✭ 112 (+558.82%)
Mutual labels:  ssh, sftp, scp
Ssh Mitm
ssh mitm server for security audits supporting public key authentication, session hijacking and file manipulation
Stars: ✭ 335 (+1870.59%)
Mutual labels:  ssh, sftp, scp
Cowrie
Cowrie SSH/Telnet Honeypot https://cowrie.readthedocs.io
Stars: ✭ 3,810 (+22311.76%)
Mutual labels:  ssh, sftp, scp
Winscp
WinSCP is a popular free SFTP and FTP client for Windows, a powerful file manager that will improve your productivity. It supports also Amazon S3, FTPS, SCP and WebDAV protocols. Power users can automate WinSCP using .NET assembly.
Stars: ✭ 794 (+4570.59%)
Mutual labels:  ssh, sftp, scp
Sshkit.ex
An Elixir toolkit for performing tasks on one or more servers, built on top of Erlang’s SSH application.
Stars: ✭ 108 (+535.29%)
Mutual labels:  ssh, scp
Snowflake
Graphical SFTP client and terminal emulator with helpful utilities
Stars: ✭ 1,676 (+9758.82%)
Mutual labels:  ssh, sftp
Paramiko Tutorial
📡🐍SSH & SCP in Python with Paramiko
Stars: ✭ 65 (+282.35%)
Mutual labels:  ssh, scp
Webterminal
ssh rdp vnc telnet sftp bastion/jump web putty xshell terminal jumpserver audit realtime monitor rz/sz 堡垒机 云桌面 linux devops sftp websocket file management rz/sz otp 自动化运维 审计 录像 文件管理 sftp上传 实时监控 录像回放 网页版rz/sz上传下载/动态口令 django
Stars: ✭ 1,124 (+6511.76%)
Mutual labels:  ssh, sftp
Ssh2 Promise
ssh with promise/async await and typescript support
Stars: ✭ 110 (+547.06%)
Mutual labels:  ssh, sftp
Git Web Client
[Abandoned] Web Git client using full stack Symfony2 with SSH/SFTP support
Stars: ✭ 32 (+88.24%)
Mutual labels:  ssh, sftp
Grunt Sftp Deploy
Grunt task for code deployment over sftp
Stars: ✭ 158 (+829.41%)
Mutual labels:  ssh, sftp
Premotem
Personal Remote Manager
Stars: ✭ 161 (+847.06%)
Mutual labels:  ssh, sftp
chromeos-filesystem-sftp
ChromeOS app to access SFTP server
Stars: ✭ 78 (+358.82%)
Mutual labels:  sftp, libssh2
libssh2.nim
Nim wrapper for libssh2
Stars: ✭ 25 (+47.06%)
Mutual labels:  wrapper, libssh2

ssh2.nim

High level async SSH, SCP and SFTP client for Nim, using libssh2 wrapper

Usage

import asyncdispatch, ssh2, ssh2/scp

proc main() {.async.} =
  var client = newSSHClient()
  defer: client.disconnect()
  await client.connect("127.0.0.1", "nim", Port(2222), password="secret")
  echo await client.execCommand("uptime")

waitFor main()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].