├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── LICENSE ├── README.md ├── core ├── config.py ├── images │ └── preview.PNG ├── payloads │ ├── base.py │ ├── custom │ │ ├── bindandexecute.py │ │ └── execute.py │ ├── payload.py │ └── templates │ │ ├── advanced-payload.txt │ │ ├── basic-payload.txt │ │ └── template.ps1 └── utils.py ├── encoder.jar └── listen.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/README.md -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/config.py -------------------------------------------------------------------------------- /core/images/preview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/images/preview.PNG -------------------------------------------------------------------------------- /core/payloads/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/payloads/base.py -------------------------------------------------------------------------------- /core/payloads/custom/bindandexecute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/payloads/custom/bindandexecute.py -------------------------------------------------------------------------------- /core/payloads/custom/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/payloads/custom/execute.py -------------------------------------------------------------------------------- /core/payloads/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/payloads/payload.py -------------------------------------------------------------------------------- /core/payloads/templates/advanced-payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/payloads/templates/advanced-payload.txt -------------------------------------------------------------------------------- /core/payloads/templates/basic-payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/payloads/templates/basic-payload.txt -------------------------------------------------------------------------------- /core/payloads/templates/template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/payloads/templates/template.ps1 -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/core/utils.py -------------------------------------------------------------------------------- /encoder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/encoder.jar -------------------------------------------------------------------------------- /listen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drew-Alleman/powershell-backdoor-generator/HEAD/listen.py --------------------------------------------------------------------------------