Go to file
Kevin F a2e9ce6aeb Fixed race condition 2023-03-13 22:25:04 -05:00
.vscode + Finished authentication 2022-09-10 14:28:54 -05:00
docs Preped docs for github pages 2023-03-07 16:29:26 -06:00
security Documenting use, cleanup, and script now cleans html file links 2023-03-06 22:15:02 -06:00
server Moved control commands to their own file 2023-03-13 13:24:02 -05:00
tools Fixed race condition 2023-03-13 22:25:04 -05:00
util Preped docs for github pages 2023-03-07 16:29:26 -06:00
.gitattributes added gitattributes with linguist ignores 2022-09-10 14:33:46 -05:00
.gitignore Preped docs for github pages 2023-03-07 16:29:26 -06:00
Building.md Documenting use, cleanup, and script now cleans html file links 2023-03-06 22:15:02 -06:00
Client.md Fixed race condition 2023-03-13 22:25:04 -05:00
Dependencies.md mostly working 2023-03-04 20:40:41 -06:00
EnvironmentVariables.md Replace sendkeys with keylogger 2023-03-02 21:20:34 -06:00
LICENSE.md Add license and move websocket to Streaming file 2022-12-27 17:05:32 -06:00
Makefile Moved control commands to their own file 2023-03-13 13:24:02 -05:00
Plumbing.md Documenting use, cleanup, and script now cleans html file links 2023-03-06 22:15:02 -06:00
ReadMe.md Fixed race condition 2023-03-13 22:25:04 -05:00

ReadMe.md

GoSmartKeyboard

Copyright Kevin Froman Licensed under GPLv3

Work in progress

--- version 3.0.0

Introduction

GoSmartKeyboard is a daemon that allows you to have a more powerful keyboarding experience. It can be used with a secondary device, such as an Android phone or a raspberry pi, or it can run locally. A seperate client binary is provided that reads from a FIFO (named pipe) and sends the data to the server. This allows you to use any program that can write to a FIFO as a source of keyboard input.

This is done with a simple websocket server meant to accept a single connection, authenticate it, and stream UTF16 characters and send them as key strokes into the window manager. With a simple daemon like this we can enhance keyboarding with inteligent features.

Be careful with online games, as they may interpret the keystrokes as cheating. I assume if you don't send keystrokes or more accurately than a human you should be fine, but don't blame the software if you get banned.

See Building.md for instructions on how to build this literate project.

What can you do with it?

Examples of what you can do:

  • Run dictation software on a separate device
  • Typical macros
  • Buffer typed text before sending it to the server, preventing invalid commands or input.
  • Clever CLI tricks, think vim or cowsay on your keyboard!
  • Isolated password manager
  • One Time Passwords
  • Virtual keyboard switch (keyboard multiplexer)
  • Typing things into VMS, or transfering text based files to VMs/servers.
  • Text storage, such as configuration or SSH pubkeys
  • On-the-fly spell checking or translation
  • On-the-fly encryption (ex: PGP sign every message you type), isolated from the perhaps untrusted computer
  • Easy layout configuration
  • Key logging
  • Delay keystrokes by a few dozen or so milliseconds to reduce key stroke timing biometrics

Some points about the design of this project:

  • Written in go with the literate tool srcweave, so this markdown book is actually the source code
  • KISS principle above All
  • Small and light core
  • No dependencies for the core and most features
  • Features (such as described in above section) are implementend as seperate programs, unix style
  • Simple threat model

Running

Installation

The server and client are both single static binaries. The only requirement is Linux. This software has been tested with typical US keyboards in QWERTY and Colemak layouts. It should work with any keyboard layout, though.

Keyboard weirdness

Not all keyboards are equal, per the Linux kernel documentation, some keyboards do not autorepeat keys. Autorepeat behavior was also found inconsistent during testing and seems to mess up the rawcapture tool.

Server

sudo KEYBOARD_TCP_BIND_ADDRESS=127.1 KEYBOARD_TCP_BIND_PORT=8080 ./keyboard

You could also run sudoless by giving your user access to uinput, but it would minimally if at all be more secure.

On first run it will output your authentication token. Store it in a safe place such as your password manager.

It is highly recommended to use SSH forwarding (preferred) or a reverse https proxy to access the server.

Socket file

It is more secure and mildly more efficient to use a unix socket file. To do this, set the environment variable KEYBOARD_UNIX_SOCKET_PATH to the path of the socket file. The server will create the file if it does not exist. The socket is useful for reverse proxies or SSH forwarding.

Client

KEYBOARD_AUTH=your_token_here KEYBOARD_FIFO=keyboard_control_file ./keyboard-client "ws://myserver:8080/sendkeys

From here you can use any program that can write to a FIFO to send keystrokes to the server. For example, you could use cat to send a file to the server, or cowsay to send a cow message to the server.

SSH example

To connect with ssh, run this on the client:

ssh -R 8080:localhost:8080 user@myserver

You would then run the above keyboard-client command with ws://localhost:8080/sendkeys as the argument.

Tools

There are a few tools provided to help you get started. They are all in the tools directory.