fsquillace/kyrat

Make kyrat complaint to ssh when using nested quotes

Opened this issue · 2 comments

Kyrat is almost complaint with ssh the problem comes with nested quotes.

This two commands differs:

ssh localhost -- bash -c \"ls -l\"
kyrat localhost -- bash -c \"ls -l\"

Also this:

ssh localhost -- bash -c \"bash -c \\\"ls -l\\\"\"
kyrat localhost -- bash -c \"bash -c \\\"ls -l\\\"\"
ezbik commented

BTW your competitor sshrc allows remote commands

It is possible to specify remote commands in kyrat. The problem come when using multiple nested quotes as part of the remote command.

If I remember correctly sshrc suffers about the same problem.