├── .gitignore ├── LICENSE ├── README.md ├── ScripBlockSmuggling ├── ScripBlockSmuggling.sln └── ScripBlockSmuggling │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ScripBlockSmuggling.csproj │ └── packages.config ├── ScriptBlockSmuggling.ps1 └── SmugglingCmdlet ├── SmugglingCmdlet.sln └── SmugglingCmdlet ├── Class1.cs ├── Properties └── AssemblyInfo.cs ├── SmugglingCmdlet.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/README.md -------------------------------------------------------------------------------- /ScripBlockSmuggling/ScripBlockSmuggling.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/ScripBlockSmuggling/ScripBlockSmuggling.sln -------------------------------------------------------------------------------- /ScripBlockSmuggling/ScripBlockSmuggling/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/ScripBlockSmuggling/ScripBlockSmuggling/App.config -------------------------------------------------------------------------------- /ScripBlockSmuggling/ScripBlockSmuggling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/ScripBlockSmuggling/ScripBlockSmuggling/Program.cs -------------------------------------------------------------------------------- /ScripBlockSmuggling/ScripBlockSmuggling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/ScripBlockSmuggling/ScripBlockSmuggling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScripBlockSmuggling/ScripBlockSmuggling/ScripBlockSmuggling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/ScripBlockSmuggling/ScripBlockSmuggling/ScripBlockSmuggling.csproj -------------------------------------------------------------------------------- /ScripBlockSmuggling/ScripBlockSmuggling/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/ScripBlockSmuggling/ScripBlockSmuggling/packages.config -------------------------------------------------------------------------------- /ScriptBlockSmuggling.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/ScriptBlockSmuggling.ps1 -------------------------------------------------------------------------------- /SmugglingCmdlet/SmugglingCmdlet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/SmugglingCmdlet/SmugglingCmdlet.sln -------------------------------------------------------------------------------- /SmugglingCmdlet/SmugglingCmdlet/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/SmugglingCmdlet/SmugglingCmdlet/Class1.cs -------------------------------------------------------------------------------- /SmugglingCmdlet/SmugglingCmdlet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/SmugglingCmdlet/SmugglingCmdlet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmugglingCmdlet/SmugglingCmdlet/SmugglingCmdlet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/SmugglingCmdlet/SmugglingCmdlet/SmugglingCmdlet.csproj -------------------------------------------------------------------------------- /SmugglingCmdlet/SmugglingCmdlet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/ScriptBlock-Smuggling/HEAD/SmugglingCmdlet/SmugglingCmdlet/packages.config --------------------------------------------------------------------------------