Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7612924
  • 博文数量: 1769
  • 博客积分: 18684
  • 博客等级: 上将
  • 技术积分: 16352
  • 用 户 组: 普通用户
  • 注册时间: 2010-06-02 10:28
个人简介

啥也没写

文章分类

全部博文(1769)

文章存档

2024年(15)

2023年(44)

2022年(39)

2021年(46)

2020年(43)

2019年(27)

2018年(44)

2017年(50)

2016年(47)

2015年(15)

2014年(21)

2013年(43)

2012年(143)

2011年(228)

2010年(263)

2009年(384)

2008年(246)

2007年(30)

2006年(38)

2005年(2)

2004年(1)

分类: LINUX

2009-04-03 17:45:18

写好的SHELL,不想让别人看到里面的内容,就可以用shc来加SHELL,效果还可以!
 
安装:(以cnetos为例)
rpm -Uhv
yum install shc -y
 
用rpmforge的源,就可以安装shc了,
 
加密:
shc -r -f shell脚本
shc -v -f shell脚本
加完密码之后,会生成三个文件
[root@localhost ~]# file changeyum.sh*
changeyum.sh:     Bourne-Again shell script text executable
changeyum.sh.x:   ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), stripped
changeyum.sh.x.c: ASCII C program text
还可以设定有效期:
[root@localhost ~]# shc -e 04/02/2009 -m "Please contact h3ewhack@163.com" -r -f changeyum.sh
[root@localhost ~]# date
2009年 04月 04日 星期六 17:37:40 CST
[root@localhost ~]# ./changeyum.sh.x  过期了
./changeyum.sh.x: has expired!
Please contact
 
更多内容,请查看
shc --help
 
那个.c的文件,还可以用gcc编译
gcc -o akin changeyum.sh.x.c
./akin
效果一样,和和,
阅读(1179) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2009-04-08 17:43:19

什么机密,不让人看,,,设置权限就好了。。