├── .gitattributes ├── .gitignore ├── InsecurePowerShellHost.sln ├── InsecurePowerShellHost ├── InsecurePowerShellHost.cs ├── InsecurePowerShellHost.csproj ├── Microsoft.Management.Infrastructure.dll ├── Microsoft.PowerShell.Commands.Diagnostics.dll ├── Microsoft.PowerShell.Commands.Management.dll ├── Microsoft.PowerShell.Commands.Utility.dll ├── Microsoft.PowerShell.ConsoleHost.dll ├── Microsoft.PowerShell.CoreCLR.Eventing.dll ├── Microsoft.PowerShell.Security.dll ├── Microsoft.WSMan.Management.dll ├── Microsoft.WSMan.Runtime.dll ├── Newtonsoft.Json.dll ├── System.Management.Automation.dll ├── System.Text.Encoding.CodePages.dll └── System.Text.Encoding.dll └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/.gitignore -------------------------------------------------------------------------------- /InsecurePowerShellHost.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost.sln -------------------------------------------------------------------------------- /InsecurePowerShellHost/InsecurePowerShellHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/InsecurePowerShellHost.cs -------------------------------------------------------------------------------- /InsecurePowerShellHost/InsecurePowerShellHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/InsecurePowerShellHost.csproj -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.Management.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.Management.Infrastructure.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.PowerShell.Commands.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.PowerShell.Commands.Diagnostics.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.PowerShell.Commands.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.PowerShell.Commands.Management.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.PowerShell.Commands.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.PowerShell.Commands.Utility.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.PowerShell.ConsoleHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.PowerShell.ConsoleHost.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.PowerShell.CoreCLR.Eventing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.PowerShell.CoreCLR.Eventing.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.PowerShell.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.PowerShell.Security.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.WSMan.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.WSMan.Management.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Microsoft.WSMan.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Microsoft.WSMan.Runtime.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/System.Management.Automation.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /InsecurePowerShellHost/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/InsecurePowerShellHost/System.Text.Encoding.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cobbr/InsecurePowerShellHost/HEAD/README.md --------------------------------------------------------------------------------