├── .gitattributes ├── .gitignore ├── PSPunch.sln ├── PSPunch ├── App.config ├── CryptUtil │ └── FileTools.cs ├── Modules │ ├── add-exfiltration.ps1.enc │ ├── dns_txt_pwnage.ps1.enc │ ├── do-exfiltration.ps1.enc │ ├── get-information.ps1.enc │ ├── get-wlan-keys.ps1.enc │ ├── gupt-backdoor.ps1.enc │ ├── invoke-gpppassword.ps1.enc │ ├── invoke-mimikatz.ps1.enc │ ├── invoke-ninjacopy.ps1.enc │ ├── invoke-shellcode.ps1.enc │ ├── invoke-wmicommand.ps1.enc │ ├── key.txt │ ├── out-dnstxt.ps1.enc │ ├── powercat.ps1.enc │ ├── powerup.ps1.enc │ └── powerview.ps1.enc ├── PSPunch.csproj ├── PSPunchDisplay │ └── Display.cs ├── PSPunchProcessing │ ├── Processing.cs │ └── PunchState.cs ├── PSPunchShell │ ├── PSParamType.cs │ ├── PSParameter.cs │ ├── PSPunchHost.cs │ ├── PSPunchHostRawUserInterface.cs │ └── PSPunchHostUserInterface.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── BuildDate.txt └── strings.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/.gitignore -------------------------------------------------------------------------------- /PSPunch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch.sln -------------------------------------------------------------------------------- /PSPunch/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/App.config -------------------------------------------------------------------------------- /PSPunch/CryptUtil/FileTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/CryptUtil/FileTools.cs -------------------------------------------------------------------------------- /PSPunch/Modules/add-exfiltration.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/add-exfiltration.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/dns_txt_pwnage.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/dns_txt_pwnage.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/do-exfiltration.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/do-exfiltration.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/get-information.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/get-information.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/get-wlan-keys.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/get-wlan-keys.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/gupt-backdoor.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/gupt-backdoor.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/invoke-gpppassword.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/invoke-gpppassword.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/invoke-mimikatz.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/invoke-mimikatz.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/invoke-ninjacopy.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/invoke-ninjacopy.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/invoke-shellcode.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/invoke-shellcode.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/invoke-wmicommand.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/invoke-wmicommand.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/key.txt -------------------------------------------------------------------------------- /PSPunch/Modules/out-dnstxt.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/out-dnstxt.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/powercat.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/powercat.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/powerup.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/powerup.ps1.enc -------------------------------------------------------------------------------- /PSPunch/Modules/powerview.ps1.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Modules/powerview.ps1.enc -------------------------------------------------------------------------------- /PSPunch/PSPunch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunch.csproj -------------------------------------------------------------------------------- /PSPunch/PSPunchDisplay/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchDisplay/Display.cs -------------------------------------------------------------------------------- /PSPunch/PSPunchProcessing/Processing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchProcessing/Processing.cs -------------------------------------------------------------------------------- /PSPunch/PSPunchProcessing/PunchState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchProcessing/PunchState.cs -------------------------------------------------------------------------------- /PSPunch/PSPunchShell/PSParamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchShell/PSParamType.cs -------------------------------------------------------------------------------- /PSPunch/PSPunchShell/PSParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchShell/PSParameter.cs -------------------------------------------------------------------------------- /PSPunch/PSPunchShell/PSPunchHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchShell/PSPunchHost.cs -------------------------------------------------------------------------------- /PSPunch/PSPunchShell/PSPunchHostRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchShell/PSPunchHostRawUserInterface.cs -------------------------------------------------------------------------------- /PSPunch/PSPunchShell/PSPunchHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/PSPunchShell/PSPunchHostUserInterface.cs -------------------------------------------------------------------------------- /PSPunch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Program.cs -------------------------------------------------------------------------------- /PSPunch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PSPunch/Resources/BuildDate.txt: -------------------------------------------------------------------------------- 1 | December 5, 2015 at 2:10:42 PM 2 | -------------------------------------------------------------------------------- /PSPunch/strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/PSPunch/strings.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vysecurity/PSPunch/HEAD/README.md --------------------------------------------------------------------------------