https://github.com/bararchy/sshsocket
A Ruby impelementaiotn of the SSH Server Side Protocol using ffi
https://github.com/bararchy/sshsocket
Last synced: 12 months ago
JSON representation
A Ruby impelementaiotn of the SSH Server Side Protocol using ffi
- Host: GitHub
- URL: https://github.com/bararchy/sshsocket
- Owner: bararchy
- License: mit
- Created: 2014-11-25T10:37:42.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2025-04-28T15:32:56.000Z (over 1 year ago)
- Last Synced: 2025-04-28T16:32:18.801Z (over 1 year ago)
- Language: Ruby
- Size: 26.4 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SSHSocket
=========
A Ruby impelementaiotn of the SSH Server Side Protocol using ffi
Usage:
```ruby
require 'sshsocket'
sock = SSHSocket::Socket.new(rsakey: '/path/to/ssh_host_rsa_key',
dsakey: '/path/to/ssh_host_dsa_key',
password: 'test',
user: 'test',
port: '5555',
listen_address: '0.0.0.0',
banner: 'my_SSH',
timeout: "300")
sock.listen
sock.close
```
Licensed under: The MIT License (MIT)
Thanks:
* @ik5 (idokan@gmail.com).