Зашифруйте файл, используя скрипт оболочки bash - PullRequest
13 голосов
/ 27 декабря 2011

Я хочу зашифровать файл с помощью openssl.Я могу сделать это, используя

openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss 

Когда я запускаю эту команду, она получает пароль от меня два раза.Я хочу установить пароль с помощью скрипта, и я использовал

openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss -pass pritom 

, но он дает мне следующую ошибку:

Invalid password argument "pritom"
Error getting password 

Что я могу сделать сейчас?

Ответы [ 2 ]

13 голосов
/ 27 декабря 2011

Попробуйте что-то вроде этого -

openssl des3 -salt -in /pritom/uaeyha_com.sql -out /pritom/a.ss -pass pass:pritom

Со страницы man:

PASS PHRASE ARGUMENTS<br> Several commands accept password arguments, typically using -passin and -passout for input and output passwords respectively. These allow the password to be obtained from a variety of sources. Both of these options take a single argument whose format is described below. If no password argument is given and a password is required then the user is prompted to enter one: this will typically be read from the current terminal with echoing turned off.

   pass:password
             the actual password is password. Since the password is visible to utilities (like 'ps' under Unix)
             this form should only be used where security is not important.

   env:var   obtain the password from the environment variable var. Since the environment of other processes is
             visible on certain platforms (e.g. ps under certain Unix OSes) this option should be used with
             caution.

   file:pathname
             the first line of pathname is the password. If the same pathname argument is supplied to -passin and
             -passout arguments then the first line will be used for the input password and the next line for the
             output password. pathname need not refer to a regular file: it could for example refer to a device
             or named pipe.

   fd:number read the password from the file descriptor number. This can be used to send the data via a pipe for
             example.

   stdin     read the password from standard input.
2 голосов
/ 26 декабря 2014

, чтобы скрыть это от команды ps, используйте:

temp_varX=pritom ;
openssl .....  -pass fd:0 <<< "$temp_var"
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...