mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Updated README.md
This commit is contained in:
parent
f5a146255f
commit
2e9f3d7726
1 changed files with 16 additions and 6 deletions
22
README.md
22
README.md
|
@ -22,6 +22,10 @@ Above the hkex.Conn layer, the server and client apps in this repository
|
||||||
algorithms, interactive/non-interactive, etc.) to be used for further
|
algorithms, interactive/non-interactive, etc.) to be used for further
|
||||||
communication.
|
communication.
|
||||||
|
|
||||||
|
Packets are subject to random padding, and (optionally) the client and server
|
||||||
|
channels can both send _chaff_ packets at random defineable intervals to help
|
||||||
|
thwart analysis of session activity (especially for interactive shell sessions).
|
||||||
|
|
||||||
NOTE: Due to the experimental nature of the HerraduraKEx algorithm used to
|
NOTE: Due to the experimental nature of the HerraduraKEx algorithm used to
|
||||||
derive crypto keying material, this algorithm and the demonstration remote
|
derive crypto keying material, this algorithm and the demonstration remote
|
||||||
shell client/server programs should be used with caution and should definitely
|
shell client/server programs should be used with caution and should definitely
|
||||||
|
@ -45,24 +49,30 @@ Dependencies:
|
||||||
* [github.com/mattn/go-isatty](http://github.com/mattn/go-isatty) //terminal tty detection
|
* [github.com/mattn/go-isatty](http://github.com/mattn/go-isatty) //terminal tty detection
|
||||||
* [github.com/kr/pty](http://github.com/kr/pty) //unix pty control (server pty connections)
|
* [github.com/kr/pty](http://github.com/kr/pty) //unix pty control (server pty connections)
|
||||||
* [github.com/jameskeane/bcrypt](http://github.com/jameskeane/bcrypt) //password storage/auth
|
* [github.com/jameskeane/bcrypt](http://github.com/jameskeane/bcrypt) //password storage/auth
|
||||||
|
* [blitter.com/go/goutmp](https://blitter.com/gogs/Russtopia/goutmp) // wtmp/lastlog C bindings
|
||||||
|
|
||||||
Get source code
|
Get source code
|
||||||
--
|
--
|
||||||
* $ go get -u github.com/Russtopia/hkexsh
|
* $ go get -u blitter.com/go/hkexsh
|
||||||
* $ go get github.com/mattn/go-isatty ## only used by demos, not picked up by above go get -u?
|
* $ cd $GOPATH/src/blitter.com/go/hkexsh
|
||||||
|
* $ go build ./... # install all dependent go pkgs
|
||||||
|
|
||||||
To build
|
To build
|
||||||
--
|
--
|
||||||
* $ cd $GOPATH/src/github.com/Russtopia/hkexsh
|
* $ cd $GOPATH/src/blitter.com/go/hkexsh
|
||||||
* $ make clean all
|
* $ make clean all
|
||||||
|
|
||||||
To set accounts & passwords:
|
To set accounts & passwords:
|
||||||
--
|
--
|
||||||
* $ sudo echo "joebloggs:*:*:*" >/etc/hkexsh.passwd
|
* $ echo "joebloggs:*:*:*" >hkexsh.passwd
|
||||||
|
* $ sudo mv hkexsh.passwd /etc
|
||||||
* $ sudo hkexpasswd/hkexpasswd -u joebloggs
|
* $ sudo hkexpasswd/hkexpasswd -u joebloggs
|
||||||
* $ <enter a password, enter again to confirm>
|
* $ <enter a password, enter again to confirm>
|
||||||
|
|
||||||
Running Clent and Server. In separate shells:
|
Running Clent and Server. In separate shells:
|
||||||
--
|
--
|
||||||
* [A]$ sudo hkexshd/hkexshd &
|
* [A]$ sudo hkexshd/hkexshd & # add -d for debugging
|
||||||
* [B]$ hkexsh/hkexsh -u joebloggs
|
* [B]$ hkexsh/hkexsh -u joebloggs # add -d for debugging
|
||||||
|
|
||||||
|
NOTE if running client (hkexsh) with -d, one will likely need to run 'reset' afterwards to fix up the shell tty afterwards as stty echo may not be restored if client crashes or is interrupted.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue