일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- lord of sql injection
- 함수
- 조건문
- blind sql injection
- 백준 알고리즘
- object
- 백준 파이썬
- 사칙연산
- 배열
- Pwndbg
- IF문
- jQuery
- property
- xss game
- document
- suninatas 풀이
- htmlspecialchars
- 김성엽 대표님
- 메소드
- burp suite
- xss game 풀이
- 자바스크립트
- 객체
- python
- window
- sql injection
- element 조회
- 포인터
- 파이썬
- github
- Today
- Total
목록프리다 (2)
power-girl0-0
Frida-trace란? -> 프로세스를 추적해주는 명령어 -> frida-tace -i 명령어를 이용해서 chorme에서 open()이라는 함수가 실행될 때마다 추적되도록 실습 # frida-trace ① nox 애뮬레이터에서 chorme을 실행 ② chrome의 패키지 이름을 확인 ( 명령어 : frida-ps -Ua ) -> 연결된 디바이스에 현재 실행중인 프로세스 출력해주는 명령어 ③ open()함수가 실행될 때 출력되도록 js파일을 만들어줌 (명령어 : frida-trace -i "open" -U com.android.chrome) -> frida-trace : 프로세스 추적하는 명령어 사용 -> -i : 함수지정 -> -U : 추적할 대상 지정 # open.js 살펴보기 -> 해당 경로에 들어..
1. 다운로드 된 프리다 버전과 nox의 버전 알아두기 - Frida : 12.11.6 - Nox : 32bit 버전 2. 밑에 주소에서 버전에 맞는 frida-server를 다운받아 주고 압축을 풀기 https://github.com/frida/frida/releases Releases · frida/frida Clone this repo to build Frida. Contribute to frida/frida development by creating an account on GitHub. github.com 3. 다운받은 프리다 서버를 안드로이드 안의 /data/local/tmp로 이동하기 - 명령어 : nox_adb push [서버 다운받은 경로] /data/local/tmp 4. /data/l..