惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
CERT Recently Published Vulnerability Notes
C
Cybersecurity and Infrastructure Security Agency CISA
P
Proofpoint News Feed
Security Latest
Security Latest
P
Privacy International News Feed
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
AI
AI
Cisco Talos Blog
Cisco Talos Blog
K
Kaspersky official blog
S
Secure Thoughts
PCI Perspectives
PCI Perspectives
Simon Willison's Weblog
Simon Willison's Weblog
D
DataBreaches.Net
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
罗磊的独立博客
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
V
V2EX
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tenable Blog
T
Threat Research - Cisco Blogs
T
Troy Hunt's Blog
V2EX - 技术
V2EX - 技术
S
Security @ Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
Project Zero
Project Zero
The GitHub Blog
The GitHub Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
Lohrmann on Cybersecurity
F
Full Disclosure
H
Help Net Security
博客园 - Franky
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Engineering at Meta
Engineering at Meta
A
Arctic Wolf
O
OpenAI News
S
Securelist

博客园 - 利刃

命令行访问https(转载,略有改动) 转载:指定浏览器打开指定的网页 返流性食管炎的治疗 ldap 导出、导入ldif数据 跨表批量查找匹配数据-转载(略有改动) 转载:通过yum查找并安装包 转载:dos批处理中路径获取 转载:双网卡添加默认路由,实现内外网同时访问 bandwagonhost.com (搬瓦工)机房网速比较 - 利刃 sftp无法连接问题 java ssl 连接AD域 sap快捷登录 转载(略有修改):Windows 8的承载网络设置方法(w8 创建无线网络/ap) 转载:Keytool 工具介绍 minecraft初探 linux图像界面连接-xdm 经典的始终经典(牛蛙) vmware install win8 and server2012 problem windows硬盘优化篇
转载:Shell 脚本加密 - 略有修改
利刃 · 2015-05-27 · via 博客园 - 利刃

shc是一个加密shell脚本的工具.它的作用是把shell脚本转换为一个可执行的二进制文件. 

shc 安装 
yum -y install shc

如果yum不能安装,请移步官方下载rpm包 http://pkgs.repoforge.org/shc/ 

安装rpm:     rpm -ivh shc-3.8.6-1.el5.rf.i386.rpm

使用方法: 

shc -r -f script-name 注意:要有-r选项, -f 后跟要加密的脚本名. 

运行后会生成两个文件,script-name.x 和 script-name.x.c 

script-name.x是加密后的可执行的二进制文件. 

./script-name 即可运行. 

script-name.x.c是生成script-name.x的原文件(c语言)