반응형
안드로이드의 경우에는 Busybox 에 watch 바이너리가 포함되어 있습니다.
iOS의 경우에는 바이너리 파일은 못 찾았고, 대신에 shell script 파일이 있더군요.
출처: http://daniel.lubarov.com/simple-watch-script-for-osx
#!/usr/bin/bash
# Usage: watch [command] [duration]
# Ex) ./watch 'ps -ef | grep -i spring' 0.01
while :; do
clear
date
bash -c "$1"
sleep ${2:-1}
done
반응형
'Information Security > iOS' 카테고리의 다른 글
THEOS 간단한 Tweak 제작 (1) | 2021.07.10 |
---|---|
THEOS 설치 (3) | 2021.07.09 |
Frida로 iOS 앱 알림창 띄우기와 탈옥탐지 우회 기법으로 활용 (0) | 2021.06.15 |
sleep 함수 후킹을 통한 Jailbreak Detection Bypass (0) | 2021.05.09 |
frida NSArray Value Change (0) | 2021.04.27 |