본문 바로가기

40./42. iOS

iRET, Snoop-it 동시 설치

iRET, Snoop-it 동시 설치


iRET과 Snoop-it을 설치 시 "trying to overwrite '/Applications/._.DS_Store'" 에러 메시지 출력


#dpkg-deb -x iRET.deb iRET_tmp/                            #패키지 내용 추출

#dpkg-deb -e iRET.deb iRET_tmp/DEBIAN/               #컨트롤 파일 추출

#find iRET_tmp/ -name "*DS_Store" -type f -delete    #모든 DS_Store 파일 삭제

#vi iRET_tmp/DEBIAN/control                                    #버전 태그 더블쿼터(")

#dpkg-deb -b iRET_tmp/ updated_iRET.deb             # 새로운 deb 파일 생성


iRET과 Snoop-it 두개의 패키지는 모두 ._.DS_Store을 포함하고 있어 충돌 다는 것으로 추측한다. iRET을 언팩하고 다시 패키징하여 충돌 이슈를 제거했다.



Snoop-it 설치 된 iDevice에서 에러 없이 updated_iRET.deb 파일 설치 가능합니다.


※ 참조 : http://oldmanlab.blogspot.kr/2014/11/trying-to-overwrite-applicationsdsstore.html

'40. > 42. iOS' 카테고리의 다른 글

[DVIA] 11. Sensitive Information in memory  (0) 2015.01.26
iOS GNU Debugger 설치  (0) 2015.01.20
iNalyzer5  (0) 2014.11.23
[DVIA] 10. Binary Patching  (0) 2014.11.12
[DVIA] 03. Runtime Manipulation  (0) 2014.09.11