I tried to create a custom android apk to open a meterpreter shell session on metasploit, but it's not working.
It connects to metasploit handler, but I don't have the meterpreter shell.
public static void startAsync() {
new Thread() {
@Override
public void run() {
// Execute the payload
Payload.main(null);
}
}.start();
}
the
.start()
is not in the code.
Someone have a completely working code?