Skip to content
/ rwptm Public

read and write virtual memory without a handle

Notifications You must be signed in to change notification settings

ItzPAX/rwptm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rwptm

What is this?

Project I have been working on some time ago. It allows you to read and write to a process without needing a driver and a handle

Usage

#include "rwptm.h"

int main()
{
	while (!rwptm::init("<TargetProcess.exe>", "<OwnProcessName.exe>"))
	{
		std::cout << "Target not found, retrying in 1s...\n";
		Sleep(1000);
	}
	
	while (true)
	{
		std::cout << std::hex << rwptm::read_virtual_memory<short>(rwptm::target_base) << std::endl;
		Sleep(1);
	}

	system("pause");
	return 1;
}

About

read and write virtual memory without a handle

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages