Re: [qubes-users] Help sending multiple files using qrexec

2019-12-12 Thread David Hobach
On 12/5/19 3:28 AM, pr...@tutanota.de wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 I should have mentioned that this was part of a bigger script, using qvm-copy would have required me to also pass along the qube name, so I could then cd to the correct QubesIncoming directory. Keeping

Re: [qubes-users] Help sending multiple files using qrexec

2019-12-04 Thread prago
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 I should have mentioned that this was part of a bigger script, using qvm-copy would have required me to also pass along the qube name, so I could then cd to the correct QubesIncoming directory. Keeping it simple I went with tar: Script one on the

Re: [qubes-users] Help sending multiple files using qrexec

2019-12-04 Thread M
Can a hacker use the same script to transfer files from a victims pc remotely ? And if so, how easy is it ? -- You received this message because you are subscribed to the Google Groups "qubes-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [qubes-users] Help sending multiple files using qrexec

2019-12-04 Thread haaber
This successfully sends the first file, but not the second, can anyone help with this or should I be using qvm-copy? I don't say what you should, or should not, but what I think is more easy: recall that qvm-copy or qvm-move take certainly multiple files. The question is more intriguing if the

[qubes-users] Help sending multiple files using qrexec

2019-12-03 Thread prago
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, I am trying to send mutliple files using qrexec by catting the files using the following scripts: Script one on the client: echo "$#" while [ $1 ]; do     echo $(wc -l $1)     cat $1     shift done Script two on the server: read NUMFILES