├── .gitignore ├── CMD └── chaps.bat ├── PowerShellv2 └── chaps_PSv2.ps1 ├── PowerShellv3 └── chaps_PSv3.ps1 └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutaway-security/chaps/HEAD/.gitignore -------------------------------------------------------------------------------- /CMD/chaps.bat: -------------------------------------------------------------------------------- 1 | rem Update chaps_PSv2.ps1 to run in CMD Prompt -------------------------------------------------------------------------------- /PowerShellv2/chaps_PSv2.ps1: -------------------------------------------------------------------------------- 1 | # TODO: Update chaps_PSv3.ps1 to run in PSv2 2 | -------------------------------------------------------------------------------- /PowerShellv3/chaps_PSv3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutaway-security/chaps/HEAD/PowerShellv3/chaps_PSv3.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutaway-security/chaps/HEAD/README.md --------------------------------------------------------------------------------