Chat over SSH.
Go to file
Andrey Petrov 3c8df8bab1 LICENSE, todo. 2014-12-12 17:52:05 -08:00
LICENSE LICENSE, todo. 2014-12-12 17:52:05 -08:00
Makefile Banhammer! 2014-12-12 14:50:14 -08:00
README.md LICENSE, todo. 2014-12-12 17:52:05 -08:00
client.go Spaces are hard. 2014-12-12 16:00:55 -08:00
cmd.go Banhammer! 2014-12-12 14:50:14 -08:00
history.go Hacky fixes with notes. 2014-12-12 01:15:58 -08:00
history_test.go More commands, history, tests. 2014-12-11 22:03:32 -08:00
logger.go Progress: Echo working. 2014-12-06 23:31:23 -08:00
pty.go Set term width properly. 2014-12-09 19:26:55 -08:00
server.go Banhammer! 2014-12-12 14:50:14 -08:00

README.md

ssh-chat

Custom SSH server written in Go. Instead of a shell, you get a chat prompt.

Quick Start

Usage:
  ssh-chat [OPTIONS]

Application Options:
  -v, --verbose   Show verbose logging.
  -b, --bind=     Host and port to listen on. (0.0.0.0:22)
  -i, --identity= Private key to identify server with. (~/.ssh/id_rsa)

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 ":2022" --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).

Developing

If you're developing on this repo, there is a handy Makefile that should set things up with make run.

TODO:

  • Welcome message.
  • set term width properly
  • client map rather than list
  • backfill chat history
  • tab completion
  • /ban
  • /help
  • /about
  • /list
  • /nick
  • pubkey fingerprint
  • truncate usernames
  • rename collision bug
  • Some tests.
  • More tests.
  • Even more tests.
  • Lots of refactoring
    • Pull out the chat-related stuff into isolation from the ssh serving stuff

License

MIT