能力值:
( LV2,RANK:10 )
|
-
-
2 楼
围观一下 !!!
|
能力值:
( LV3,RANK:30 )
|
-
-
3 楼
。。。扫描端口的看懂了。。。Task_Port
扫描Web 的是干啥用的? Task_Web
如果是扫描链接的话。。。有个微微的BUG。。。。就是 域名 和 后面的链接 中间有个空格,会被浏览器写成%20.
不过 你要有意 写出空格。。。。那就当我没说。。。。
http://www.debugman.com/ space/uid/18733
↑
这里~~~ %20
Fix: task_web.py
from task import * import socket, struct
class web_plugin(engine_plugin): def __init__(self, name): engine_plugin.__init__(self, name) def handle_task(self, task_info): host, url = task_info['work'][0] self.log(task_info, "URL:%s%s"%(host,url)) def init_plugin(name): return web_plugin(name)
|
|
|