The table lists security-related search targets for code auditing, including HTTP URLs, hardcoded keys, encryption/signing code, WebView configurations, network requests, local storage, and regex patterns for IP addresses, phone numbers, and JWT tokens.
Search Target
Keyword / Regex
HTTP URL
http:// https://
Hardcoded Secrets
key, secret, password
Encryption-Related Code
Cipher, AES, encrypt, decrypt
Signing-Related Code
sign, md5, sha256, hmac
WebView Configuration
WebView, addJavascriptInterface, setJavaScriptEnabled
Network Requests
okHttp, Retrofit, HttpURLConnection
Local Storage
SharedPreferences, SQLiteDatabase
IP Address (Regex)
\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}
Phone Number (Regex)
1[3-9]\d{9}
JWT Token (Regex)
eyJ[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]