├── .gitignore ├── LICENSE ├── New-PSArmoury.ps1 ├── PSArmoury.json ├── README.md ├── modules ├── TEMPLATE_evasion_AMSI_bypass.ps1 ├── TEMPLATE_obfuscation_RC2.ps1 ├── TEMPLATE_obfuscation_byte_convert.ps1 ├── TEMPLATE_obfuscation_empty.ps1 ├── evasion.ps1 └── obfuscation.ps1 └── utilities ├── ConvertTo-Powershell.ps1 └── Invoke-Shuffle.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | meta/ 2 | MyArmoury.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/LICENSE -------------------------------------------------------------------------------- /New-PSArmoury.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/New-PSArmoury.ps1 -------------------------------------------------------------------------------- /PSArmoury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/PSArmoury.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/README.md -------------------------------------------------------------------------------- /modules/TEMPLATE_evasion_AMSI_bypass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/modules/TEMPLATE_evasion_AMSI_bypass.ps1 -------------------------------------------------------------------------------- /modules/TEMPLATE_obfuscation_RC2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/modules/TEMPLATE_obfuscation_RC2.ps1 -------------------------------------------------------------------------------- /modules/TEMPLATE_obfuscation_byte_convert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/modules/TEMPLATE_obfuscation_byte_convert.ps1 -------------------------------------------------------------------------------- /modules/TEMPLATE_obfuscation_empty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/modules/TEMPLATE_obfuscation_empty.ps1 -------------------------------------------------------------------------------- /modules/evasion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/modules/evasion.ps1 -------------------------------------------------------------------------------- /modules/obfuscation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/modules/obfuscation.ps1 -------------------------------------------------------------------------------- /utilities/ConvertTo-Powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/utilities/ConvertTo-Powershell.ps1 -------------------------------------------------------------------------------- /utilities/Invoke-Shuffle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfalta/PowerShellArmoury/HEAD/utilities/Invoke-Shuffle.ps1 --------------------------------------------------------------------------------