Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 366 Bytes

How to check for sensitive information leakage using ADB logcat.md

File metadata and controls

7 lines (4 loc) · 366 Bytes

To check for sensitive information leakage using ADB logcat, you can use the following command:

  1. Copy code

  2. adb logcat | grep -i "password|key|token|secret"

  3. This command will display all logcat output that contains the keywords "password", "key", "token", or "secret". You can add or remove keywords as needed to search for specific information.