如何在linux中执行加密的bash脚本文件

时间:2016-08-16 05:25:51

标签: linux linux-kernel

我有一个bash文件,我希望通过加密模式执行它。

使用此命令我加密了我的文件。 现在我想运行它。我怎么能这样做?

openssl des3 -salt -in file.txt -out file.txt.enc -pass pass:password

1 个答案:

答案 0 :(得分:0)

使用shc脚本编译器对其进行加密(Blowfish),请参阅此http://www.thegeekstuff.com/2012/05/encrypt-bash-shell-script/?utm_source=tuicool

http://www.linuxsecurity.com/content/view/117920/171

http://www.datsi.fi.upm.es/~frosal/

如果您想使用DES3,可以尝试使用 soFan 的答案:

https://unix.stackexchange.com/questions/90178/how-can-i-either-encrypt-or-render-my-shell-script-unreadable

编写包装器#!/bin/sh openssl enc -d -DES3 ... -a -in script-enc | sh -