├── README.md ├── escalate ├── Powerless.bat ├── winPEAS.bat └── winprivesc.bat ├── main.py ├── requirements.bat ├── scripts ├── getunconstrained.ps1 ├── iisconfig.ps1 ├── list_antivirus.bat ├── listarptables.ps1 ├── listcredentials.ps1 ├── listnetworkinter.ps1 ├── listprogramsfol.ps1 ├── listprogramsreg.ps1 ├── removeupdate.ps1 ├── routingtable.ps1 ├── sensitive_data_search.ps1 └── unquoteservice.ps1 └── util ├── AvTrigger ├── main.go └── video.mov ├── VM-Detect ├── example.cpp └── vmdetect.h ├── disable_firewall.ps1 ├── get_powershell_history.ps1 ├── list_firewall_blocked_ports.ps1 └── screencapture.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/README.md -------------------------------------------------------------------------------- /escalate/Powerless.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/escalate/Powerless.bat -------------------------------------------------------------------------------- /escalate/winPEAS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/escalate/winPEAS.bat -------------------------------------------------------------------------------- /escalate/winprivesc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/escalate/winprivesc.bat -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/main.py -------------------------------------------------------------------------------- /requirements.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/requirements.bat -------------------------------------------------------------------------------- /scripts/getunconstrained.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/getunconstrained.ps1 -------------------------------------------------------------------------------- /scripts/iisconfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/iisconfig.ps1 -------------------------------------------------------------------------------- /scripts/list_antivirus.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/list_antivirus.bat -------------------------------------------------------------------------------- /scripts/listarptables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/listarptables.ps1 -------------------------------------------------------------------------------- /scripts/listcredentials.ps1: -------------------------------------------------------------------------------- 1 | cmdkey /list -------------------------------------------------------------------------------- /scripts/listnetworkinter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/listnetworkinter.ps1 -------------------------------------------------------------------------------- /scripts/listprogramsfol.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/listprogramsfol.ps1 -------------------------------------------------------------------------------- /scripts/listprogramsreg.ps1: -------------------------------------------------------------------------------- 1 | Get-ChildItem -path Registry::HKEY_LOCAL_MACHINE\SOFTWARE | ft Name -------------------------------------------------------------------------------- /scripts/removeupdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/removeupdate.ps1 -------------------------------------------------------------------------------- /scripts/routingtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/routingtable.ps1 -------------------------------------------------------------------------------- /scripts/sensitive_data_search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/sensitive_data_search.ps1 -------------------------------------------------------------------------------- /scripts/unquoteservice.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/scripts/unquoteservice.ps1 -------------------------------------------------------------------------------- /util/AvTrigger/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/AvTrigger/main.go -------------------------------------------------------------------------------- /util/AvTrigger/video.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/AvTrigger/video.mov -------------------------------------------------------------------------------- /util/VM-Detect/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/VM-Detect/example.cpp -------------------------------------------------------------------------------- /util/VM-Detect/vmdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/VM-Detect/vmdetect.h -------------------------------------------------------------------------------- /util/disable_firewall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/disable_firewall.ps1 -------------------------------------------------------------------------------- /util/get_powershell_history.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/get_powershell_history.ps1 -------------------------------------------------------------------------------- /util/list_firewall_blocked_ports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/list_firewall_blocked_ports.ps1 -------------------------------------------------------------------------------- /util/screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brows3r/Crowbar/HEAD/util/screencapture.py --------------------------------------------------------------------------------