Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.35 KB

readme.md

File metadata and controls

43 lines (32 loc) · 1.35 KB

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