Shell脚本加密

Posted 有暗香盈袖c

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell脚本加密相关的知识,希望对你有一定的参考价值。

1.
为什么要加密
原因1
shell脚本是可读写的,防止别人看到某些用户名,密码,IP等。
原因2
shell脚本在运行时会也泄露敏感信息。




2
shc加密

将shell脚本转换为一个可执行的二进制文件.

#创建存放帮助文档的目录
[root@aliyun ~]# mkdir -p /usr/local/man/man1
#下载软件包
[root@aliyun ~]# cd /usr/local/
[root@aliyun local]# wget http://www.datsi.fi.upm.es/~frosal/sources/shc-3.8.9.tgz
#解压软件包
[root@aliyun local]tar xf shc-3.8.9.tgz
#安装
[root@aliyun local]# cd shc-3.8.9/
[root@aliyun shc-3.8.9]# make install
#测试
[root@aliyun test]ll
total 4
-rw-r--r-- 1 root root 31 Jun 20 22:16 test.sh
[root@aliyun test]shc -r -f test.sh 
#生成两个文件:
#test.sh.x 是加密后的可执行的二进制文件
#test.sh.x.c 是生成test.sh.x的原脚本(c语言)
[root@aliyun test]ll
total 28
-rw-r--r-- 1 root root    31 Jun 20 22:16 test.sh
-rwx--x--x 1 root root 11272 Jun 20 22:17 test.sh.x
-rw-r--r-- 1 root root  9629 Jun 20 22:17 test.sh.x.c
#执行脚本
[root@aliyun test]# ./test.sh.x 
only gay !



3
gzexe加密
系统自带,功能比较弱,只能满足一般需求。
#加密test.sh
[root@aliyun test]gzexe test.sh 
test.sh:     -6.5%
[root@aliyun test]ll
total 8
-rw-r--r-- 1 root root 860 Jun 20 22:29 test.sh   #加密后的脚本
-rw-r--r-- 1 root root  31 Jun 20 22:16 test.sh~  #原脚本的备份
#执行脚本
[root@aliyun test]sh test.sh
only gay !
[root@aliyun test]sh test.sh~
only gay !
[root@aliyun test]
Shell脚本加密

             

                  

长按关注,每周更新一次适合学生党和上班族的干货

以上是关于Shell脚本加密的主要内容,如果未能解决你的问题,请参考以下文章

使用 SHC 加密 Shell 脚本

手机shell脚本加密后不能运行

shell 脚本 片段

shell加密 与 二进制

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

Shell 脚本加密