shc是一個加密shell腳本的工具.它的作用是把shell腳本轉換為一個可執行的二進制文件. 用shell腳本對系統進行自動化維護,簡單,便捷而且可移植性好. 但shell腳本是可讀寫的,很有可能會泄露敏感信息,如用戶名,密碼,路徑,IP等. 同樣,在shell腳本運行時會也泄露敏感信息. shc是一個加密shell腳本的工具.它的作用是把shell腳本轉換為一個可執行的二進制文件. 這就很好的解決了上述問題. tar zxvf shc-3.8.tgz cd shc-3.8 make test make make test make strings make install 這一步需要root權限 使用方法: 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語言)
上傳時間: 2013-12-21
上傳用戶:wfeel
S6B0724液晶顯示驅動程序 void LCD_BUSY(void) void write_LCD_data(uchar lcd_data) void write_LCD_command(uchar command) void clear_lcd(void) void LCDClearLine(uchar line) void prints(uchar line,uchar * temp) void printf(ulong int x) void change_code(uint * x) void Sendlcd(uchar x,uchar y,uchar dat) void Sendhz(uchar x,uchar y,uchar dat) void display_HZ(void) void display_date(void) void LCD_initial(void) void prints_id(uchar line,uint id) //void print_lcd(uchar *sss)
標簽: void write_LCD_command write_LCD_data LCD_BUSY
上傳時間: 2016-03-17
上傳用戶:獨孤求源
多項式曲線擬合 任意介數 Purpose - Least-squares curve fit of arbitrary order working in C++ Builder 2007 as a template class, using vector<FloatType> parameters. Added a method to handle some EMathError exceptions. If do NOT want to use this just call PolyFit2 directly. usage: Call PolyFit by something like this. CPolyFit<double> PolyFitObj double correlation_coefficiant = PolyFitObj.PolyFit(X, Y, A) where X and Y are vectors of doubles which must have the same size and A is a vector of doubles which must be the same size as the number of coefficients required. returns: The correlation coefficient or -1 on failure. produces: A vector (A) which holds the coefficients.
標簽: Least-squares arbitrary Purpose Builder
上傳時間: 2013-12-18
上傳用戶:宋桃子
這是用漢語注釋的EMD程序,很不錯的。% 語法 % IMF = EMD(X) % IMF = EMD(X,..., Option_name ,Option_value,...) % IMF = EMD(X,OPTS) % [IMF,ORT,NB_ITERATIONS] = EMD(...)
上傳時間: 2016-04-16
上傳用戶:Miyuki
簡單一元函數優化實例,利用遺傳算法計算函數f(x)=x*sin(10pi*x)+2.0,-1<=x<=2的最大值
標簽: 函數優化
上傳時間: 2016-05-19
上傳用戶:love_stanford
透過a51的程式,使用者可以使用ATMEL T89C51CC01內建的類比轉數位功能,提高學習者的學習效率。
上傳時間: 2013-12-19
上傳用戶:王小奇
透過C51的程式,使用者可以使用ATMEL T89C51CC01內建的類比轉數位功能,提高學習者的學習效率。
上傳時間: 2016-09-05
上傳用戶:王者A
本MATLAB例程,為通過遺傳算法的思想來解決f(x)=x*sin(10pi*x)+2.0,-1<=x<=2的最大值問題。
標簽: MATLAB
上傳時間: 2016-11-20
上傳用戶:fxf126@126.com
指定一個數字轉換回十進位,八進位,十六進位#include <stdio.h> #include <stdlib.h> int main(void) { int number =89 printf("數字 %d\n",number) /* %d 為十進位輸出格式*/ printf("八進位為 %o\n",number) /* %o 為八進位輸出格式*/ printf("十六進位為%x\n",number) /* %x 為十六進位輸出格式*/ system("pause") return 0 }
上傳時間: 2013-11-29
上傳用戶:tyler
6440linuxDriver的源代碼,適合2.4.x-2.6.x適用
標簽: linuxDriver 6440 源代碼
上傳時間: 2017-03-19
上傳用戶:lanjisu111