Skip to content

BakaLabs/read_write_memory

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

read_write_memory

GitHub GitHub release (latest by date)

Description

The ReadWriteMemory Class is made on Dart for reading and writing to the memory of any process.

Usage

ReadWriteMemory rw = ReadWriteMemory();
Process process1 = rw.getProcessByName('name.exe');
Process process2 = rw.getProcessByID(0);
process1.open();
process2.open();

Process Modules

for (Module module in process.enumProcessModule()){
    print(module);
    print(' path:   ${module.path}')
}

Module module = process.moduleFromName('module name');
print(module.path);
print(module.lpBaseOfDll);

Get Pointer

process.getPointer(module.lpBaseOfDll, offsets: [0xFF, 0xFC]);

Close Process

process.close();

AssultCube hack example

About

ReadWriteMemory Class to work with Windows process memory and hacking video games

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dart 100.0%