diff --git a/README.md b/README.md index 8ce2d874..cc614a35 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,12 @@ ## Description -Simple C server for achieving a nice remote shell allowing: -* Remote C function calls -* Remote shell commands -* Remote filesystem management +Simple remote control process requiring a single executable to be uploaded and run on the remote host. +This executable then provides a protocol to call native C functions which makes it possible to control +every aspect of the connected machine. + +For more information about the client which utilizes these abilities, please view its README here: +https://github.com/doronz88/zshell/tree/master/src/pyzshell ## Building C Server @@ -42,5 +44,5 @@ To execute the server: Connecting via: ```shell -python3 -m pyzshell ishell +python3 -m pyzshell ishell ``` diff --git a/src/pyzshell/README.md b/src/pyzshell/README.md index 80b004d8..91c7c239 100644 --- a/src/pyzshell/README.md +++ b/src/pyzshell/README.md @@ -6,6 +6,8 @@ Simple python3 client achieving a nice remote shell allowing: * Remote C function calls * Remote shell commands * Remote filesystem management +* Remote process management +* Remote network apis (create tcp connections, unix domain, and more...) ## Installing python client @@ -20,7 +22,7 @@ python3 -m pip install --user -U . Connecting via: ```shell -python3 -m pyzshell ishell +python3 -m pyzshell ishell ``` Here are some examples of things you may do: