frida / frida-gum

Cross-platform instrumentation and introspection library written in C
https://frida.re
Other
753 stars 245 forks source link

process: Expose thread names via enumerate_threads() #706

Closed hexploitable closed 9 months ago

hexploitable commented 1 year ago

Exposes thread names via Process.enumerateThreads.

Currently implemented:

Tested on iOS and Android, but not macOS + Linux yet.

nblog commented 1 year ago

glib has an implementation of them, but it is private and can be consulted for its implementation. win32: g_system_thread_set_name posix: g_system_thread_set_name

hexploitable commented 1 year ago

glib has an implementation of them, but it is private and can be consulted for its implementation. win32: g_system_thread_set_name posix: g_system_thread_set_name

Thanks, I'll check this out - been meaning to get back to this PR!