Skip to content

BuilderDemo7/LuaRT-Process-Module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LuaRT-Process-Module

13/06/2023 23:46 (11:46 PM) GMT-3 I made this simple module for LuaRT and then I pubilshed it on github,

with this module you can read and write process memory through Lua 5.4. thanks to LuaRT you can really do a module for this!

METHODS: process.FindWindow(windowName) --> windowName: string (the window to find, no need to include .exe!) ; find the window process ; returns a userdata of the process and returns the process ID.

process.WriteProcessMemory(processID,address,string) --> processID: number (the target process ID), address: dword or number (the address to write to), string: string (bytes to be written) ; write a string to a process's memory

  • 0.2-beta: fixed no writing bug; returns a false if failed and true if succeded.

process.ReadProcessMemory(processID,address,size) --> processID: number (the target process ID), address: dword or number (the address to be read), size: number (the size in bytes to read) ; read a address of the process's memory ; returns a string of the content.

thank you for reading... this module doesn't kinda work well but it's still usable.

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published