OS: 髒牛(Dirty COW)漏洞:Linux 核心通殺提權漏洞 (CVE-2016-5195)__Linux

來源:互聯網
上載者:User

注意,編譯漏洞利用程式時:

gcc -lpthread dirtyc0w.c -o dirtyc0w

在Ubuntu 15.10下實際測試,需要改為:

gcc -pthread dirtyc0w.c -o dirtyc0w


gcc dirtyc0w.c -o dirtyc0w -lpthread

才能正常編譯。


其他漏洞利用代碼:

https://github.com/dirtycow/dirtycow.github.io/wiki/PoCs



http://www.tuicool.com/articles/Rjiy2ma
How To Patch and Protect Linux Kernel Zero Day Local Privilege Escalation Vulnerability CVE... 時間 2016-10-21 16:21:45 nixCraft 原文  http://www.cyberciti.biz/faq/dirtycow-linux-cve-2016-5195-kernel-local-privilege-escalation-vulnerability-fix/ 主題 Linux核心

A very serious security problem has been found in the Linux kernel. A 0-day local privilege escalation vulnerability has existed for eleven years since 2005. This bug affects all sort of of Android or Linux kernel to escalate privileges. Any user can become root in less than 5 seconds. The bug has existed since Linux kernel version 2.6.22+. How do I fix this problem? This bug is named as Dirty COW

(CVE-2016-5195) is a privilege escalation vulnerability in the Linux Kernel. Exploitation of this bug does not leave any trace of anything abnormal happening to the logs. So you can not detect if someone has exploited this against your server. What is CVE-2016-5195 bug?

From the project :

A race condition was found in the way the Linux kernel’s memory subsystem handled the copy-on-write (COW) breakage of private read-only memory mappings. An unprivileged local user could use this flaw to gain write access to otherwise read-only memory mappings and thus increase their privileges on the system.

A nasty bug for sure. Any local users can write to any file they can read, and present since at least Linux kernel version 2.6.22.Linus Torvalds explained :

This is an ancient bug that was actually attempted to be fixed once (badly) by me eleven years ago in commit 4ceb5db9757a (“Fix get_user_pages() race for write access”) but that was then undone due to problems on s390 by commit f33ea7f404e5 (“fix get_user_pages bug”).

In the meantime, the s390 situation has long been fixed, and we can now fix it by checking the pte_dirty() bit properly (and do it better). The s390 dirty bit was implemented in abf09bed3cce (“s390/mm: implement software dirty bits”) which made it into v3.9. Earlier kernels will have to look at the page state itself.

Also, the VM has become more scalable, and what used a purely theoretical race back then has become easier to trigger.

To fix it, we introduce a new internal FOLL_COW flag to mark the “yes, we already did a COW” rather than play racy games with FOLL_WRITE that is very fundamental, and then use the pte dirty flag to validate that the FOLL_COW flag is still valid. A list of affected Linux distros (including VMs and containers that share the same kernel) Red Hat Enterprise Linux 7.x Red Hat Enterprise Linux 6.x Red Hat Enterprise Linux 5.x CentOS Linux 7.x CentOS Linux 6.x CentOS Linux 5.x Debian Linux wheezy Debian Linux jessie Debian Linux stretch Debian Linux sid Ubuntu Linux precise (LTS 12.04) Ubuntu Linux trusty Ubuntu Linux xenial (LTS 16.04) Ubuntu Linux yakkety Ubuntu Linux vivid/ubuntu-core SUSE Linux Enterprise 11 and 12. How do I fix CVE-2016-5195 on Linux?

Type the commands as per your Linux distro. You need to reboot the box . Before you apply patch, note down your current kernel version:

$ uname -a$ uname -mrs

Sample outputs:

Linux 3.13.0-95-generic x86_64
Debian or Ubuntu Linux $ sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade

Reboot the server: $ sudo reboot

Related: Ubuntu Linux users can hotfix this Linux kernel bug without rebooting the server . RHEL / CentOS Linux 5.x/6.x/7.x

$ sudo yum update$ sudo reboot
RHEL / CentOS Linux 4.x
$ sudo up2date -u$ sudo reboot
Suse Enterprise Linux or Opensuse Linux

To apply all needed patches to the system type:

# zypper patch# reboot
Verification

You need to make sure your version number has changed:

$ uname -a$ uname -r$ uname -mrs
Determine if your system is vulnerable

For RHEL/CentOS Linux, use the following script:

$ wget https://access.redhat.com/sites/default/files/rh-cve-2016-5195_1.sh$ bash rh-cve-2016-5195_1.sh
For all other distro try PoC (proof of concept exploit code)

Grab the PoC: $ wget https://raw.githubusercontent.com/dirtycow/dirtycow.github.io/master/dirtyc0w.c

Run it as follows. First be root:

$ sudo -s# echo this is not a test > foo

Run it as normal user: $ gcc -lpthread dirtyc0w.c -o dirtyc0w
$ ./dirtyc0w foo m00000000000000000
mmap 56123000
madvise 0
procselfmem 1800000000
$ cat foo
m00000000000000000 References: Ubuntu Linux: CVE-2016-5195 . Debian Linux: CVE-2016-5195 . RHEL/CentOS Linux: CVE-2016-5195 . Suse enterprise Linux: CVE-2016-5195(coming soon). dirtycow . Share this tutorial on: 分享

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.