mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-18 09:19:24 +03:00
Security fix patch. Fix insecure temporary file and directory creations. (CAN-2004-0231)
This commit is contained in:
parent
ce8669be61
commit
d65d90116c
@ -1375,8 +1375,10 @@ A Vuelca el contenido del archivo seleccionado
|
|||||||
od -c %f
|
od -c %f
|
||||||
|
|
||||||
B Edita un informe de errores y lo envía al superusuario
|
B Edita un informe de errores y lo envía al superusuario
|
||||||
vi /tmp/mail.$$
|
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
|
||||||
mail -s "Error Midnight Commander" root < /tmp/mail.$$
|
vi $I
|
||||||
|
mail -s "Error Midnight Commander" root < $I
|
||||||
|
rm -f $I
|
||||||
|
|
||||||
M Lee al correo
|
M Lee al correo
|
||||||
emacs -f rmail
|
emacs -f rmail
|
||||||
|
@ -1381,8 +1381,10 @@ A A kiv
|
|||||||
od -c %f
|
od -c %f
|
||||||
|
|
||||||
B A hiba leírás szerkesztése és elküldése a root-nak
|
B A hiba leírás szerkesztése és elküldése a root-nak
|
||||||
vi /tmp/mail.$$
|
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
|
||||||
mail -s "Midnight Commander bug" root < /tmp/mail.$$
|
vi $I
|
||||||
|
mail -s "Midnight Commander bug" root < $I
|
||||||
|
rm -f $I
|
||||||
|
|
||||||
M Levél olvasás
|
M Levél olvasás
|
||||||
emacs -f rmail
|
emacs -f rmail
|
||||||
|
@ -1390,8 +1390,10 @@ A Mostra un dump del file correntemente selezionato
|
|||||||
od -c %f
|
od -c %f
|
||||||
|
|
||||||
B Modifica un rapporto bachi e lo spedisce a root
|
B Modifica un rapporto bachi e lo spedisce a root
|
||||||
vi /tmp/mail.$$
|
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
|
||||||
mail -s "Midnight Commander bug" root < /tmp/mail.$$
|
vi $I
|
||||||
|
mail -s "Midnight Commander bug" root < $I
|
||||||
|
rm -f $I
|
||||||
|
|
||||||
M Legge la posta
|
M Legge la posta
|
||||||
emacs -f rmail
|
emacs -f rmail
|
||||||
|
@ -1401,8 +1401,10 @@ A Dump the currently selected file
|
|||||||
od -c %f
|
od -c %f
|
||||||
|
|
||||||
B Edit a bug report and send it to root
|
B Edit a bug report and send it to root
|
||||||
vi /tmp/mail.$$
|
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
|
||||||
mail -s "Midnight Commander bug" root < /tmp/mail.$$
|
vi $I
|
||||||
|
mail -s "Midnight Commander bug" root < $I
|
||||||
|
rm -f $I
|
||||||
|
|
||||||
M Read mail
|
M Read mail
|
||||||
emacs -f rmail
|
emacs -f rmail
|
||||||
|
@ -1174,8 +1174,10 @@ A Wyrzu
|
|||||||
od -c %f
|
od -c %f
|
||||||
|
|
||||||
B Stwórz raport o błędzie i wyślij do roota.
|
B Stwórz raport o błędzie i wyślij do roota.
|
||||||
vi ~/tmp/mail.$$
|
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
|
||||||
mail -s "B³±d Midnight Commandera" root < ~/tmp/mail.$$
|
vi $I
|
||||||
|
mail -s "B³±d Midnight Commandera" root < $I
|
||||||
|
rm -f $I
|
||||||
|
|
||||||
M Przeczytaj pocztę.
|
M Przeczytaj pocztę.
|
||||||
emacs -f rmail
|
emacs -f rmail
|
||||||
|
@ -1563,8 +1563,10 @@ A Dump the currently selected file
|
|||||||
od -c %f
|
od -c %f
|
||||||
|
|
||||||
B Edit a bug report and send it to root
|
B Edit a bug report and send it to root
|
||||||
vi /tmp/mail.$$
|
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
|
||||||
mail -s "Midnight Commander bug" root < /tmp/mail.$$
|
vi $I
|
||||||
|
mail -s "Midnight Commander bug" root < $I
|
||||||
|
rm -f $I
|
||||||
|
|
||||||
M Read mail
|
M Read mail
|
||||||
emacs -f rmail
|
emacs -f rmail
|
||||||
|
@ -1383,8 +1383,10 @@ A
|
|||||||
od -c %f
|
od -c %f
|
||||||
|
|
||||||
B Уређује пријаву грешке и шаље је администратору
|
B Уређује пријаву грешке и шаље је администратору
|
||||||
vi /tmp/mail.$$
|
I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
|
||||||
mail -s "³àÕèÚÐ ã ßÞÝÞûÝÞÜ ÝÐàÕÔÝØÚã" root < /tmp/mail.$$
|
vi $I
|
||||||
|
mail -s "³àÕèÚÐ ã ßÞÝÞûÝÞÜ ÝÐàÕÔÝØÚã" root < $I
|
||||||
|
rm -f $I
|
||||||
|
|
||||||
M Чита пошту
|
M Чита пошту
|
||||||
emacs -f rmail
|
emacs -f rmail
|
||||||
|
Loading…
Reference in New Issue
Block a user