반응형
dump.py code for Windows
1. Use 7z (must include 7z.exe and 7z.dll in directory)
# zip_args = ('zip', '-qr', os.path.join(os.getcwd(), ipa_filename), target_dir)
zip_args = (os.getcwd() + '\\7z.exe', 'a', '-r', os.path.join(os.getcwd(), ipa_filename), target_dir)
2. Change chmod command
import stat
chmod_dir = os.path.join(PAYLOAD_PATH, os.path.basename(dump_path))
# chmod_args = ('chmod', '655', chmod_dir)
# try:
# subprocess.check_call(chmod_args)
# except subprocess.CalledProcessError as err:
# print(err)
if not os.access(chmod_dir, os.W_OK):
os.chmod(chmod_dir, stat.S_IWUSR)
frida-ios-dump file for windows
USEAGE
frida-ps -Ua
dump.py Process_Name
'Hack > Mobile' 카테고리의 다른 글
[Android] DeepLink 취약점 (WebView Hijacking Via DeepLink) (0) | 2022.08.07 |
---|---|
[iOS] Frida에서 Fat Binary File Offset 잡기 (0) | 2022.04.24 |
Android Snapshot 위치 (0) | 2022.03.08 |
Android 7 이상 Burp 인증서 설치 방법 (0) | 2022.02.07 |
iOS 버전 별 Bundle 및 설정 파일 위치 (0) | 2022.02.04 |
댓글