Files
frida-frida-python/tests/data/__init__.py
T
2022-04-26 09:03:51 +02:00

17 lines
326 B
Python

# -*- coding: utf-8 -*-
import os
import platform
system = platform.system()
if system == 'Windows':
target_program = r"C:\Windows\notepad.exe"
elif system == 'Darwin':
target_program = os.path.join(os.path.dirname(__file__), "unixvictim-macos")
else:
target_program = "/bin/cat"
__all__ = ['target_program']