摘要: mobaxterm 阅读全文
posted @ 2012-03-16 03:05 wangkangluo1 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1.web ssh shellinabox (相关关键字 tmux )参考地址:http://en.wikipedia.org/wiki/Web-based_SSHhttps://code.google.com/p/shellinabox/wiki/shellinaboxd_manhttp://rxtx.posterous.com/shellinabox-on-ubuntu-804下载hacking the code shellinabox/service.c (line 150) //"-oVisualHostKey=no -oLogLevel=QUIET %%s@%s" 阅读全文
posted @ 2012-03-16 03:01 wangkangluo1 阅读(904) 评论(0) 推荐(0) 编辑
摘要: 参考地址:http://baike.baidu.com/view/4786260.htm分析过程: 1) 成员数据对齐 #pragma pack(4) //gcc 默认为4 struct test_t { int a; /* int型,长度4 = 4 按4对齐;起始offset=0 0%4=0;存放位置区间[0,3] */ char b; /* char型,长度1 < 4 按1对齐;起始offset=4 4%1=0;存放位置区间[4] */ short c; /*short型, 长度2 < 4 按2对齐;起始offset=6 6%2=0;存放位置区间[6,7] */ char... 阅读全文
posted @ 2012-03-16 00:22 wangkangluo1 阅读(294) 评论(0) 推荐(0) 编辑