Shell脚本加密
Posted 有暗香盈袖c
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell脚本加密相关的知识,希望对你有一定的参考价值。
将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 !
#加密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脚本加密的主要内容,如果未能解决你的问题,请参考以下文章