07 2012 档案
荷兰TAC的需求
摘要:The role:Part of the Customer Service (CS) division of Juniper Networks, the candidatewill be required to provide a high level of technical support on specificJuniper Networks product(s) to Advanced Services customers, directly or viapartners. The understanding of the Knowledge Management processes 阅读全文
posted @ 2012-07-23 23:29 abacuspix 阅读(171) 评论(0) 推荐(0)
【转】国内常见WEB安全扫描产品概述
摘要:网上经常有朋友问游侠(www.youxia.org),有什么好的WEB应用安全扫描产品,这里大体的说下。 国内这类产品不算多,当然国外也不算多,数来数去,就那么几个,画个图看看: 商业产品*国外 ·Acunetix Web Vulnerability Scanner 6:简称WVS,还是不错的扫描工具,不知道检查的太细致还是因为慢,总之经常评估一个网站的时候一晚上不关电脑都扫描不万……但是报表做的不错。一般用这个扫描的话,不用等那么久,像区县政府的,扫20分钟就差不多了。 ·IBM Rational AppScan:这个是IBM旗下的产品,扫描速度中规中矩,报表功能相当强大 阅读全文
posted @ 2012-07-23 22:57 abacuspix 阅读(507) 评论(0) 推荐(0)
【转】闲聊Kernel engineer的境界(全)
摘要:我来瞎谈一下Kernel Engineer的几个境界。瞎谈呀,弟兄们别当真。闲聊Kernel engineer的境界境界(一):1. 喜欢OS。别的啥也看不上。2. 读kernel代码,每天特来劲。饭桌上特牛逼:-)3. 觉得自己啥也不懂,看了就忘,特沮丧。4. 玩板子,特来劲,饭桌上具牛逼。闲聊Kernel engineer的境界(二) 1. 开始谁也看不起,觉得做网络的其实就是大傻。 做Driver的其实就是脑残。 (2)喜欢做芯片的,特别是做CPU的。会开始补充体系结构的知识。 (3)发现bus很重要,但大多数人不懂。(4)慢慢往硬件上靠。闲聊Kernel engineer的境界(三)( 阅读全文
posted @ 2012-07-23 22:48 abacuspix 阅读(205) 评论(0) 推荐(0)
【Python】Symbol Review
摘要:It's time to review the symbols and Python words you know, and to try to pick up a few more for the next few lessons. What I've done here is written out all the Python symbols and keywords that are important to know.In this lesson take each keyword, and first try to write out what it does fr 阅读全文
posted @ 2012-07-18 12:48 abacuspix 阅读(437) 评论(0) 推荐(0)
[C puzzle book] operators
摘要:#include <stdio.h>int main(void){ int x; x = -3 + 4 * 5 -6; printf("%d\n",x); x = 3 + 4 % 5 - 6; printf("%d\n",x); //How to get it? x = -3 * 4 % - 6 / 5; printf("%d\n",x); x = (7 + 6) % 5 / 2; printf("%d\n",x);} 1 #include <stdio.h> 2 #define PRINT 阅读全文
posted @ 2012-07-10 17:16 abacuspix 阅读(207) 评论(0) 推荐(0)
nc使用技巧
摘要:nc使用技巧by quack<quack@21cn.com>http://www.xfocus.org安全焦点nc这个小玩意儿应该大家耳熟能详,也用了N年了吧……这里不多讲废话,结合一些script说说它的使用技巧。(文中所举的script都来自于nc110.tgz的文件包)一、基本使用Quack# nc -h[v1.10]想要连接到某处: nc [-options] hostname port[s] [ports] ...绑定端口等待连接: nc -l -p port [-options] [hostname] [port]参数:-e prog 程序重定向,一旦连接,就执行 [危 阅读全文
posted @ 2012-07-03 22:03 abacuspix 阅读(747) 评论(0) 推荐(0)