-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Secrets found in .so
file (shared object file)
#10
Comments
Hey @xcypher78, Thanks for the feedback. In Android applications, a Unfortunately, none of the decompilers APKscan currently supports, can handle As you've shown, you still can however scan these files for secrets since APKscan performs pattern matching on the file's bytes meaning it does not require readable strings to locate secrets. What that means is that the The simplest, but least effective method would be to try to just use grep -A30 'BEGIN RSA PRIVATE KEY' <( strings /path/to/your/.so ) Note: the If this does not work, I'd suggest using a binary analysis tool such as:
|
Also @xcypher78 just FYI if your
I'm going to close this issue for now since APKscan is working as expected, but thanks again for your feedback, I'm going to consider how to add support for this in future updates. Take care. |
The file is libapp.so and thanks for your information Lucas |
apkscan found RSA PRIVATE KEY in .so file how i can decompile .so file to check
The text was updated successfully, but these errors were encountered: