低危 Linux Kernel up to 2.6.33.20 拒绝服务漏洞
CVE编号
CVE-2011-1768利用情况
暂无补丁情况
官方补丁披露时间
2012-06-13漏洞描述
Linux是一款开放源代码的操作系统。net/ipv6/ip6_tunnel.c文件中IPv6隧道初始化函数包含如下代码:/**02 * ip6_tunnel_init - register protocol and reserve needed resources03 *04 * Return: 0 on success05 **/06 07 static int __init ip6_tunnel_init(void)08 {09 int err;10 11 if (xfrm6_tunnel_register(&ip4ip6_handler, AF_INET)) {12 printk(KERN_ERR "ip6_tunnel init: can't register ip4ip6\n");13 err = -EAGAIN;14 goto out;15 }16 17 if (xfrm6_tunnel_register(&ip6ip6_handler, AF_INET6)) {18 printk(KERN_ERR "ip6_tunnel init: can't register ip6ip6\n");19 err = -EAGAIN;20 goto unreg_ip4ip6;21 }22 23 err = register_pernet_gen_device(&ip6_tnl_net_id, &ip6_tnl_net_ops);24 if (err < 0)25 goto err_pernet;26 return 0;27 err_pernet:28 xfrm6_tunnel_deregister(&ip6ip6_handler, AF_INET6);29 unreg_ip4ip6:30 xfrm6_tunnel_deregister(&ip4ip6_handler, AF_INET);31 out:32 return err;33 }可以看到,函数会首先注册‘ip4ip6_handler’协议处理器函数,然后处理注册‘ip6_tnl_net_ops’回调函数,如果用户调用位于上述结构中的某个函数指针,会由于未初始化指针尝试访问非法内存而触发访问冲突。解决建议
用户可参考如下供应商提供的安全补丁:http://xorl.wordpress.com/2011/05/14/cve-2011-1768-linux-kernel-tunnels-remote-race-condition/受影响软件情况
# | 类型 | 厂商 | 产品 | 版本 | 影响面 | ||||
1 | |||||||||
---|---|---|---|---|---|---|---|---|---|
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | * | Up to (including) 2.6.33.20 | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.1 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.10 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.11 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.12 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.13 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.14 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.15 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.16 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.17 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.18 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.19 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.2 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.3 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.4 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.5 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.6 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.7 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.8 | - | |||||
运行在以下环境 | |||||||||
系统 | linux | linux_kernel | 2.6.33.9 | - | |||||
运行在以下环境 | |||||||||
系统 | redhat_6 | kernel | * | Up to (excluding) 0:2.6.32-131.6.1.el6 | |||||
运行在以下环境 | |||||||||
系统 | ubuntu_12.04.5_lts | linux | * | Up to (excluding) 3.1.0-1.1 | |||||
- 攻击路径 远程
- 攻击复杂度 复杂
- 权限要求 无需权限
- 影响范围 有限影响
- EXP成熟度 未验证
- 补丁情况 官方补丁
- 数据保密性 无影响
- 数据完整性 传输被破坏
- 服务器危害 DoS
- 全网数量 N/A
CWE-ID | 漏洞类型 |
CWE-362 | 使用共享资源的并发执行不恰当同步问题(竞争条件) |
Exp相关链接

版权声明
本站原创文章转载请注明文章出处及链接,谢谢合作!
评论