Skip to content

nyaoouo/NyLib2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NyLib

A simple library for Python game debugging.

How to use

from nylib.winutils.process import enable_privilege, run_admin
from nylib.process import Process


def main():
    process = Process.from_name('notepad.exe') # get the process object by name
    # or just pass the process id
    # process = Process.from_id(1234)
    
    for ldr in process.enum_ldr_data(): # enumerate the loaded modules
        print(ldr.FullDllName.remote_value(process))  # print the full dll name of the module


if __name__ == '__main__':
    run_admin() # run the script as admin if this process is not admin
    enable_privilege() # enable the debug privilege
    main()

hijack/ inject

pyimgui

hooks

TODO

  • Universal unity game utils
  • Universal unreal game utils

License

GPL V3

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published