Displaying 1 result from an estimated 1 matches for "cipriancraciun".
2019 Nov 08
1
Regarding an "earlier" variant of `pre-xfer exec` [feature request and proposed patch]
...isn't an `chdir(module_path) && execve(prexfer) &&
chdir(arg_path)` but a single `chdir(module_and_arg_path) &&
execve(prexfer)`.)
Therefore I've tried to patch `rsync` myself, mainly by copy-pasting
the code related to `pre-xfer exec` option:
* https://github.com/cipriancraciun/rsync/commit/1f85c5f596542ed878d09a60e55ea0279346802b
Please note this is the first time I see the `rsync` code-base, and
haven't done an indepth analysis. I haven't made any audit regarding
the security implications, but given that the patch is pretty small,
and most of the code is copy-...