Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nps | 27,742 | 8 days ago | 53 | October 09, 2021 | 471 | gpl-3.0 | Go | |||
一款轻量级、高性能、功能强大的内网穿透代理服务器。支持tcp、udp、socks5、http等几乎所有流量转发,可用来访问内网网站、本地支付接口调试、ssh访问、远程桌面,内网dns解析、内网socks5代理等等……,并带有功能强大的web管理端。a lightweight, high-performance, powerful intranet penetration proxy server, with a powerful web management terminal. | ||||||||||
Capistrano | 12,580 | 25,908 | 1,364 | 20 days ago | 112 | October 18, 2023 | 59 | mit | Ruby | |
A deployment automation tool built on Ruby, Rake, and SSH. | ||||||||||
Gitolite | 8,258 | a month ago | 6 | gpl-2.0 | Perl | |||||
Hosting git repositories -- Gitolite allows you to setup git hosting on a central server, with very fine-grained access control and many (many!) more powerful features. | ||||||||||
Ssh Chat | 5,056 | 2 | 25 | 10 months ago | 11 | October 13, 2021 | 54 | mit | Go | |
Chat over SSH. | ||||||||||
Ssh Audit | 2,828 | 11 days ago | 9 | September 07, 2023 | 23 | mit | Python | |||
SSH server & client security auditing (banner, key exchange, encryption, mac, compression, compatibility, security, etc) | ||||||||||
Meteor Up Legacy | 2,331 | 5 | 3 | 7 years ago | 15 | September 25, 2015 | 646 | mit | JavaScript | |
Production Quality Meteor Deployments | ||||||||||
Awesome Ssh | 2,238 | 4 months ago | 22 | cc0-1.0 | ||||||
:computer: A curated list of SSH resources. | ||||||||||
Scout_realtime | 2,126 | 2 years ago | 13 | June 27, 2014 | 11 | mit | JavaScript | |||
Realtime server metrics in your browser | ||||||||||
Flutter_server_box | 1,997 | 3 days ago | 22 | gpl-3.0 | Dart | |||||
server status & toolbox app using Flutter | ||||||||||
Getssl | 1,987 | a day ago | 86 | gpl-3.0 | Shell | |||||
obtain free SSL certificates from letsencrypt ACME server Suitable for automating the process on remote servers. |
Custom SSH server written in Go. Instead of a shell, you get a chat prompt.
Join the party:
$ ssh ssh.chat
Please abide by our project's Code of Conduct while participating in chat.
The host's public key is ssh.chat ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKPrQofxXqoz2y9A7NFkkENt6iW8/mvpfes3RY/41Oyt
and the fingerprint is SHA256:yoqMXkCysMTBsvhu2yRoMUl+EmZKlvkN+ZKmL3115xU
(as of 2021-10-13).
If you see something different, you might be MITM'd.
(Apologies if the server is down, try again shortly.)
Recent releases include builds for MacOS (darwin/amd64) and Linux (386, amd64, and ARM6 for your RaspberryPi).
Grab the latest binary release here.
Play around with it. Additional deploy examples are here.
Most people just want the latest binary release. If you're sure you want to compile it from source, read on:
You can compile ssh-chat by using make build
. The resulting binary is portable and
can be run on any system with a similar OS and CPU arch. Go 1.8 or higher is required to compile.
If you're developing on this repo, there is a handy Makefile that should set
things up with make run
.
Additionally, make debug
runs the server with an http pprof
server. This allows you to open
http://localhost:6060/debug/pprof/ and view profiling data. See
net/http/pprof for more information about pprof
.
Usage:
ssh-chat [OPTIONS]
Application Options:
-v, --verbose Show verbose logging.
--version Print version and exit.
-i, --identity= Private key to identify server with. (default: ~/.ssh/id_rsa)
--bind= Host and port to listen on. (default: 0.0.0.0:2022)
--admin= File of public keys who are admins.
--whitelist= Optional file of public keys who are allowed to connect.
--motd= Optional Message of the Day file.
--log= Write chat log to this file.
--pprof= Enable pprof http server for profiling.
Help Options:
-h, --help Show this help message
After doing go get github.com/shazow/ssh-chat/...
on this repo, you should be able
to run a command like:
$ ssh-chat --verbose --bind ":22" --identity ~/.ssh/id_dsa
To bind on port 22, you'll need to make sure it's free (move any other ssh daemons to another port) and run ssh-chat as root (or with sudo).
The FAQs can be found on the project's Wiki page. Feel free to submit more questions to be answered and added to the page.
MIT