Category Archives: Hacking and Security

최상위 Acitivty 출력 명령어

dumpsys window windows | grep -E 'mCurrentFocus|mFocusedApp'   dumpsys activity | grep top-activity

dlopen frida hooking 코드

Java.perform(function () { Interceptor.attach(Module.findExportByName(null, "dlopen"), { onEnter: function (args) { var path = args[0].readUtf8String(); console.log("[*] [...]

logcat 특정 패키지 후킹

adb logcat --pid=$(adb shell pidof -s com.example.package)

[Android] OpenVPN 연결 상태에서 Burp Suite 사용해야 할 때

앱 분석을 할 때 가끔 VPN을 연결해야만 접속할 수 있는 경우가 있다.   방법은 간단하다. [...]

[Frida] java.security.cert.CertPathValidatorException bypass

  Burp Suite 를 잡고 앱을 분석하다보면 java.security.cert.CertPathValidatorException 오류가 나는 경우가 있다. 이는 SSL 인증서 [...]