Is it possible that the published app is not signed by its developer andd if yes, How can we find out who is the app developer?
Asked
Active
Viewed 151 times
1 Answers
1
Yes it's possible, you can check by unzipping the APK, finding the META-INF/CERT.RSA
file which contains the developer's public key and using the command openssl pkcs7 -in /path/to/extracted/apk/META-INF/CERT.RSA -inform DER -print
.
For more info have a look at the first section of this link: https://www.evilsocket.net/2017/04/27/Android-Applications-Reversing-101/.

trishmapow
- 301
- 3
- 8
apksigner
tool for the Android SDK. See this answer how to to use apksigner to verify the issuer of an APK file. – Robert Jan 20 '20 at 08:31