Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onelogicalmyth/invoke-gppcse
Obtains a list of GPOs based on known Client Side Extensions (CSE) that normally contain passwords
https://github.com/onelogicalmyth/invoke-gppcse
Last synced: 3 months ago
JSON representation
Obtains a list of GPOs based on known Client Side Extensions (CSE) that normally contain passwords
- Host: GitHub
- URL: https://github.com/onelogicalmyth/invoke-gppcse
- Owner: OneLogicalMyth
- License: gpl-3.0
- Created: 2019-05-04T19:02:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-11T20:53:44.000Z (almost 6 years ago)
- Last Synced: 2024-08-04T23:11:04.996Z (6 months ago)
- Language: PowerShell
- Size: 40 KB
- Stars: 32
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-security-collection - **27**星
README
# Invoke-GPPCSE
Obtains a list of GPOs based on known Client Side Extensions (CSE) that normally contain passwords.You can read about how it works here: https://glanfield.co.uk/make-group-policy-preferences-guid-again/
# Running
First import the module.```
Import-Module .\GPPCSE.psd1
```To make it easier the module is also in a single file.
```
Import-Module .\Invoke-GPPCSE_Merged.ps1
```Running against the local domain.
```
Invoke-GPPCSE
```Running against a trusted domain. This will use your current credentials to authenticate against the remote domain.
```
Invoke-GPPCSE -DomainController 192.168.1.1
```Running against a remote domain.
```
Invoke-GPPCSE -DomainController 192.168.1.1 -Username LowPriv -Password Password1
```You can create a HTML report of the results by doing the following:
```
$Results = Invoke-GPPCSE
New-GPPCSEReport -Data $Results | Out-File Report.html
```# ToDo
* Create a C# version
* Add support for autologon registry keys