> 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/groups-and-integrity-levels/windows-integrity-levels.md).

# Уровни целостности Windows

Уровни целостности Windows (`Низкий`, `Средняя`, `Высокая`, `Система`) определяют, как процессы взаимодействуют с другими процессами и защищаемыми объектами. Некий `Высокая` контекст целостности может позволить выполнять локальные административные действия, если разрешения службы также допускают их.

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

```powershell
whoami /groups
```

<figure><img src="/files/c3a269b3672e248abc0cdf865dfe196874308660" alt="Windows integrity level in whoami /groups output"><figcaption></figcaption></figure>

## Проверка разрешений службы

Более высокий контекст целостности может позволить действия, которые не удаются из обычной оболочки со средним уровнем целостности. Если задействованы разрешения службы, сначала подтвердите уровень целостности, а затем перейдите к отдельному рабочему процессу, связанному с неправильной настройкой службы.

<figure><img src="/files/4c2eb704c69ed329e9dac8e4b85196f06461c490" alt="Windows service permission review"><figcaption></figcaption></figure>

{% content-ref url="/pages/ced81915265eef8e4be6d0d2f490c6c75639674b" %}
[Неверные настройки служб Windows](/ru/windows-vulnerabilities/vulnerable-services-and-processes/windows-service-misconfigurations.md)
{% endcontent-ref %}

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

* Одного уровня целостности недостаточно; важны и разрешения службы.
* Всегда подтверждайте контекст выполнения службы, прежде чем объявлять путь повышения привилегий.
* Если путь связан с настройкой службы, держите заметки об эксплуатации в разделе службы, чтобы не смешивать понятия.


---

# 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/groups-and-integrity-levels/windows-integrity-levels.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.
