第一種方法(gzexe):
這種加密方式不是非常保險的方法,但是能夠滿足一般的加密用途,可以隱蔽指令碼中的密碼等資訊。
它是使用系統自帶的gzexe程式,它不但加密,同時壓縮檔案。
使用方法:
gzexe file.sh
它會把原來沒有加密的檔案備份為 file.sh~ ,同時 file.sh 即被變成加密檔案;
第二種方法(shc):
安裝:tar zxvf shc-3.8.tgz
cd shc-3.8
make test
make
make test
make strings
make install
使用方法:
shc -r -f script-name
執行後會生成兩個檔案,script-name.x 和 script-name.x.c. 其中script-name.x是加密後的可執行的二進位制檔案;用./script-name即可執行,script-name.x.c是生成script-name.x的原檔案(c語言).
shell指令碼加密
shc指令碼加密 wget 解壓安裝 tar xzf shc 3.8.9b.tgz cd shc 3.8.9b make make之後會在當前路徑下編譯生成乙個shc的可執行檔案。通過cp把它複製到任意乙個可執行檔案路徑裡,需要加密指令碼的時候,直接執行即可。shc v r f scripts.sh...
shell指令碼加密
第一種方法 gzexe 這種加密方式不是非常保險的方法,但是能夠滿足一般的加密用途,可以隱蔽指令碼中的密碼等資訊。它是使用系統自帶的gzexe程式,它不但加密,同時壓縮檔案。使用方法 gzexe file.sh 它會把原來沒有加密的檔案備份為 file.sh 同時 file.sh 即被變成加密檔案 ...
shc加密shell指令碼
1.加壓shc 3.8.9b.tgz tar xzvf shc 3.8.9b.tgz cd shc 3.8.9b 2.建立幫助文件目錄 mkdir p usr local man man1 3.安裝 make install 4.安裝完,加密test.sh shc r t f test.sh 如果要...