├── .github ├── ISSUE_TEMPLATE │ └── feature_request.md └── workflows │ └── main.yml ├── Content ├── after_service_fix.png ├── before_service_fix.png └── download_repo.jpg ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── Test ├── Service-Path-Enumeration-TestCases.ps1 ├── Start-Tests.ps1 ├── Test Applications.reg ├── Test Services.reg └── WPEPesterTestModule.ps1 └── Windows_Path_Enumerate.ps1 /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /Content/after_service_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Content/after_service_fix.png -------------------------------------------------------------------------------- /Content/before_service_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Content/before_service_fix.png -------------------------------------------------------------------------------- /Content/download_repo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Content/download_repo.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/README.md -------------------------------------------------------------------------------- /Test/Service-Path-Enumeration-TestCases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Test/Service-Path-Enumeration-TestCases.ps1 -------------------------------------------------------------------------------- /Test/Start-Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Test/Start-Tests.ps1 -------------------------------------------------------------------------------- /Test/Test Applications.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Test/Test Applications.reg -------------------------------------------------------------------------------- /Test/Test Services.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Test/Test Services.reg -------------------------------------------------------------------------------- /Test/WPEPesterTestModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Test/WPEPesterTestModule.ps1 -------------------------------------------------------------------------------- /Windows_Path_Enumerate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VectorBCO/windows-path-enumerate/HEAD/Windows_Path_Enumerate.ps1 --------------------------------------------------------------------------------