mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
10 lines
426 B
Python
10 lines
426 B
Python
import frida
|
|
from pprint import pformat
|
|
from pygments import highlight
|
|
from pygments.formatters import Terminal256Formatter
|
|
from pygments.lexers import PythonLexer
|
|
|
|
|
|
print("Local parameters:", highlight(pformat(frida.query_system_parameters()), PythonLexer(), Terminal256Formatter()))
|
|
print("USB device parameters:", highlight(pformat(frida.get_usb_device().query_system_parameters()), PythonLexer(), Terminal256Formatter()))
|