├── .github └── FUNDING.yml ├── Exercise 1 - Installation └── Exercise 1.md ├── Exercise 2 - Familiarization ├── Exercise 2.md └── familiarization.py ├── Exercise 3 - C# and IronPython └── Exercise 3.md ├── Exercise 4 - IronPython Calling C# └── Exercise 4.md ├── Exercise 5 - IronPython and PowerShell └── Exercise 5.md ├── Exercise 6 - AMSI Bypass ├── Exercise 6.md └── powershell.py ├── Exercise 7 - Embedding Executables ├── Exercise 7.md ├── IronRubeus.py └── output_base64_compressed.txt ├── LICENSE ├── README.md └── Snaked-on-the-Screen-Slides.pdf /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [bc-security] -------------------------------------------------------------------------------- /Exercise 1 - Installation/Exercise 1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 1 - Installation/Exercise 1.md -------------------------------------------------------------------------------- /Exercise 2 - Familiarization/Exercise 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 2 - Familiarization/Exercise 2.md -------------------------------------------------------------------------------- /Exercise 2 - Familiarization/familiarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 2 - Familiarization/familiarization.py -------------------------------------------------------------------------------- /Exercise 3 - C# and IronPython/Exercise 3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 3 - C# and IronPython/Exercise 3.md -------------------------------------------------------------------------------- /Exercise 4 - IronPython Calling C#/Exercise 4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 4 - IronPython Calling C#/Exercise 4.md -------------------------------------------------------------------------------- /Exercise 5 - IronPython and PowerShell/Exercise 5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 5 - IronPython and PowerShell/Exercise 5.md -------------------------------------------------------------------------------- /Exercise 6 - AMSI Bypass/Exercise 6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 6 - AMSI Bypass/Exercise 6.md -------------------------------------------------------------------------------- /Exercise 6 - AMSI Bypass/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 6 - AMSI Bypass/powershell.py -------------------------------------------------------------------------------- /Exercise 7 - Embedding Executables/Exercise 7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 7 - Embedding Executables/Exercise 7.md -------------------------------------------------------------------------------- /Exercise 7 - Embedding Executables/IronRubeus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 7 - Embedding Executables/IronRubeus.py -------------------------------------------------------------------------------- /Exercise 7 - Embedding Executables/output_base64_compressed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Exercise 7 - Embedding Executables/output_base64_compressed.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/README.md -------------------------------------------------------------------------------- /Snaked-on-the-Screen-Slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BC-SECURITY/Taming-Offensive-IronPython/HEAD/Snaked-on-the-Screen-Slides.pdf --------------------------------------------------------------------------------