搜索
写经验 领红包
 > 家居

uix系统中快速混淆源代码怎么写(c源代码混淆工具)

导语:UNIX系统中快速混淆源代码

unix系统中快速混淆源代码怎么写(c源代码混淆工具)

说到源代码的混淆,其实网上有大把的工具可用,不过那些太笨重,就让本猫教你用一行命令搞定.

值得一提的是,这个技巧不仅仅可以用在源代码上,其实任何文本都可以使用.

虽说只能算雕虫小技,但可以快速简单的做混淆,下面就是混淆后的源代码

vapyhqr <fgqyvo.u>vapyhqr <havfgq.u> include <stdio.h>include <stdbool.h>define MAX_NAME 256 int main(void){double f = 123.456;float x = 123.456;printf("num is %a , float type is %a\n",f,x);getchar();return 0;}

其实tr是一个转换字符集的命令,它的功能可不止这些,大家如有兴趣可以继续挖掘一下哦:

TR(1) BSD General Commands Manual TR(1)NAME tr -- translate charactersSYNOPSIS tr [-Ccsu] string1 string2 tr [-Ccu] -d string1 tr [-Ccu] -s string1 tr [-Ccu] -ds string1 string2DESCRIPTION The tr utility copies the standard input to the standard output with sub- stitution or deletion of selected characters.

本文内容由小洁整理编辑!