Git Product home page Git Product logo

mmcopymemory's Introduction

EAC scans memory with MmCopyMemory

  • Sections
  • Memory outside a legitimate module
  • etc

The easiest way around these checks is to change the bit 0xFFFFFFFC to 0x2

let's check

5KPhKr8

EAC read like this

auto Buffer = ExAllocatePoolWithTag(PagedPool, PAGE_SIZE, ExTag);
if (!Buffer)
   return failed;
  
MM_COPY_ADDRESS Source = { 0 };
Source.VirtualAddress = Address;
MmCopyMemory(Buffer, Source, Size, MM_COPY_MEMORY_VIRTUAL, &Bytes);

Example

// bypass scans from MmCopyMemory (this only ignores VIRTUAL scans)
auto MmCopyMemoryPtr = (uintptr_t)MmCopyMemory;
for (int index = 0; index < PAGE_SIZE; index++)
{
	auto Address = MmCopyMemoryPtr + index;
	if (*reinterpret_cast<uint8_t*>(Address) == 0xFC
		&& *reinterpret_cast<uint8_t*>(Address + 1) == 0xFF
		&& *reinterpret_cast<uint8_t*>(Address + 2) == 0xFF
		&& *reinterpret_cast<uint8_t*>(Address + 3) == 0xFF)
	{
		DbgPrintEx(0, 0, "Address: 0x%p\n", (void*)Address);
		// Disable Interruptions
		*reinterpret_cast<uint8_t*>(Address) = 0x02; // set bit to (2 = MM_COPY_MEMORY_VIRTUAL)
		// Enable Interruptions
		break;
	}
}

Result

 if ( !Flags || (Flags & 0xffffff02) != 0 || ((Flags - 1) & Flags) != 0 || KeGetCurrentIrql() > 1u )
	return STATUS_INVALID_PARAMETER_4;

After 30 min, PATCHGUARD!

mmcopymemory's People

Contributors

eballoon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.