├── .gitattributes ├── .gitignore ├── CobaltStrike ├── LethalHTA.cna ├── LethalHTADotNet.exe ├── README.md ├── SCLoader.bin ├── SCLoader │ ├── SCLoader.sln │ └── SCLoader │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SCLoader.cs │ │ └── SCLoader.csproj ├── dotNetJScriptTemplate.hta └── figures │ ├── lethalhta-deploy-stageless.png │ ├── lethalhta-menu-staged.png │ ├── lethalhta-menu-stageless-session-0.png │ ├── lethalhta-menu-stageless-winver.png │ ├── lethalhta-menu-stageless.png │ ├── lethalhta-menu.png │ ├── lethalhta-stageless-flow.png │ └── lethalhta-stageless-flow.xml ├── DISCLAIMER.md ├── DotNet ├── .gitattributes ├── .gitignore ├── LethalHTADotNet.sln ├── LethalHTADotNet │ ├── App.config │ ├── ComUtils.cs │ ├── FakeObject.cs │ ├── Interfaces.cs │ ├── LethalHTA.cs │ ├── LethalHTADotNet.csproj │ └── Properties │ │ └── AssemblyInfo.cs └── README.md ├── LICENSE ├── Native ├── LethalHTA.sln ├── LethalHTA │ ├── LethalHTA.cpp │ ├── LethalHTA.vcxproj │ ├── LethalHTA.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── README.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/.gitignore -------------------------------------------------------------------------------- /CobaltStrike/LethalHTA.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/LethalHTA.cna -------------------------------------------------------------------------------- /CobaltStrike/LethalHTADotNet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/LethalHTADotNet.exe -------------------------------------------------------------------------------- /CobaltStrike/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/README.md -------------------------------------------------------------------------------- /CobaltStrike/SCLoader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/SCLoader.bin -------------------------------------------------------------------------------- /CobaltStrike/SCLoader/SCLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/SCLoader/SCLoader.sln -------------------------------------------------------------------------------- /CobaltStrike/SCLoader/SCLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/SCLoader/SCLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CobaltStrike/SCLoader/SCLoader/SCLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/SCLoader/SCLoader/SCLoader.cs -------------------------------------------------------------------------------- /CobaltStrike/SCLoader/SCLoader/SCLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/SCLoader/SCLoader/SCLoader.csproj -------------------------------------------------------------------------------- /CobaltStrike/dotNetJScriptTemplate.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/dotNetJScriptTemplate.hta -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-deploy-stageless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-deploy-stageless.png -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-menu-staged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-menu-staged.png -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-menu-stageless-session-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-menu-stageless-session-0.png -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-menu-stageless-winver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-menu-stageless-winver.png -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-menu-stageless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-menu-stageless.png -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-menu.png -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-stageless-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-stageless-flow.png -------------------------------------------------------------------------------- /CobaltStrike/figures/lethalhta-stageless-flow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/CobaltStrike/figures/lethalhta-stageless-flow.xml -------------------------------------------------------------------------------- /DISCLAIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DISCLAIMER.md -------------------------------------------------------------------------------- /DotNet/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/.gitattributes -------------------------------------------------------------------------------- /DotNet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/.gitignore -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet.sln -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet/App.config -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet/ComUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet/ComUtils.cs -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet/FakeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet/FakeObject.cs -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet/Interfaces.cs -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet/LethalHTA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet/LethalHTA.cs -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet/LethalHTADotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet/LethalHTADotNet.csproj -------------------------------------------------------------------------------- /DotNet/LethalHTADotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/LethalHTADotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DotNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/DotNet/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/LICENSE -------------------------------------------------------------------------------- /Native/LethalHTA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/LethalHTA.sln -------------------------------------------------------------------------------- /Native/LethalHTA/LethalHTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/LethalHTA/LethalHTA.cpp -------------------------------------------------------------------------------- /Native/LethalHTA/LethalHTA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/LethalHTA/LethalHTA.vcxproj -------------------------------------------------------------------------------- /Native/LethalHTA/LethalHTA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/LethalHTA/LethalHTA.vcxproj.filters -------------------------------------------------------------------------------- /Native/LethalHTA/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/LethalHTA/stdafx.cpp -------------------------------------------------------------------------------- /Native/LethalHTA/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/LethalHTA/stdafx.h -------------------------------------------------------------------------------- /Native/LethalHTA/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/LethalHTA/targetver.h -------------------------------------------------------------------------------- /Native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/Native/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewhitesec/LethalHTA/HEAD/README.md --------------------------------------------------------------------------------