├── .gitignore ├── Get-AllTrusts ├── Get-AllTrusts.ps1 └── README.md ├── Invoke-AdminAccessFinder ├── Invoke-AdminAccessFinder.ps1 └── README.md ├── Invoke-MimikatzGoldenticket ├── Invoke-MimikatzGoldenTicket.ps1 └── README.md ├── Invoke-UserPasswordTest ├── Invoke-UserPasswordTest.ps1 └── README.md ├── README.md └── User Management ├── Add-LocalAdmin.ps1 └── Delete-LocalUser.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Get-AllTrusts/Get-AllTrusts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/Get-AllTrusts/Get-AllTrusts.ps1 -------------------------------------------------------------------------------- /Get-AllTrusts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/Get-AllTrusts/README.md -------------------------------------------------------------------------------- /Invoke-AdminAccessFinder/Invoke-AdminAccessFinder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/Invoke-AdminAccessFinder/Invoke-AdminAccessFinder.ps1 -------------------------------------------------------------------------------- /Invoke-AdminAccessFinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/Invoke-AdminAccessFinder/README.md -------------------------------------------------------------------------------- /Invoke-MimikatzGoldenticket/Invoke-MimikatzGoldenTicket.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/Invoke-MimikatzGoldenticket/Invoke-MimikatzGoldenTicket.ps1 -------------------------------------------------------------------------------- /Invoke-MimikatzGoldenticket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/Invoke-MimikatzGoldenticket/README.md -------------------------------------------------------------------------------- /Invoke-UserPasswordTest/Invoke-UserPasswordTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/Invoke-UserPasswordTest/Invoke-UserPasswordTest.ps1 -------------------------------------------------------------------------------- /Invoke-UserPasswordTest/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/README.md -------------------------------------------------------------------------------- /User Management/Add-LocalAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/User Management/Add-LocalAdmin.ps1 -------------------------------------------------------------------------------- /User Management/Delete-LocalUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuz/PowerHungry/HEAD/User Management/Delete-LocalUser.ps1 --------------------------------------------------------------------------------