You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@guacamole.apache.org by Kamal Ezzaki <ka...@gmail.com> on 2019/03/27 16:53:09 UTC

Monitoring TypeScript Files

is someone know how i can monitor the ssh typescript so that he can stop
session if there is a danger input ?
i tried to use Swatch but he wait that the user valide the input

Re: Monitoring TypeScript Files

Posted by Nick Couchman <vn...@apache.org>.
On Wed, Mar 27, 2019 at 12:53 PM Kamal Ezzaki <ka...@gmail.com>
wrote:

> is someone know how i can monitor the ssh typescript so that he can stop
> session if there is a danger input ?
> i tried to use Swatch but he wait that the user valide the input
>

Well, since the data between guacd and Guacamole Client is an image, you'd
have to do this within guacd, or between guacd and the SSH connection.
Since guacd is connecting to SSH you could intercept the traffic (MITM) and
watch it that way.  You also might be able to "hook" something in with
guacd such that you enable recording (including keystrokes) for the
connection, then have something watching the output from the recording and
kill the connection if it detects something bad.  Whether or not this could
happen quickly enough to actually prevent whatever dangerous input you're
trying to prevent is another question.

What do you consider "danger input" and what are you trying to stop?

-Nick