1Jan

Print Lab For Word 3.2.3 Download

1 Jan 2000admin

Download and personalize editable 2020 monthly calendar template in many formats including word, xls/xlsx, and pdf. These planner templates on this page include the US holidays. For other countries like the UK, Canada, Australia, India, etc. visit respective country calendar pages. You may print multiple copies of calendar or planner you like, only ensure the copyright text at the bottom should stay intact.

All of these word processor programs are 100 percent freeware, which means that you won't ever have to purchase the program, uninstall it after so-many days, donate a small fee, purchase add-ons for basic functionality, etc. The word processor tools below are free to download at no cost. PDF Templates: Download template by clicking on it, save to your computer and then open when needed. If you will be printing it out, be sure NOT to check 'fit to page' in your printer settings or the actual printout will not be correct.

The classic, most used, editable 2020 monthly calendar with the US holidays inside a large box design Word template. The 12-months calendar template can be edited with any office application or with our online word creator tool.

Download this free printable 2020 month calendar template with public holidays and notes space. The template features horizontal lines and ample blank space for everyday notes.

A landscape layout, editable 2020 monthly planner for the appointments or to-do in a Microsoft Word template. This customizable calendar includes federal holidays.

Download or personalize this landscape layout 2020 monthly planner template with public holidays. The customizable daily planner features three lines for capturing daily notes.

The colorful design calendar template for the year 2020 with the US holidays in a landscape layout word document. This cute template is best for growing K12 kids. Customizable using our online calendar creator.

Download and personalize this editable 2020 monthly calendar template with the US public holidays and large boxes for each day in a colorful, A4 size Microsoft Word and PDF document.

Download this printable landscape layout 2020 monthly planner design template with federal holidays in a black and white floral design. The teen-focused template can be personalized using our online calendar maker.

A landscape layout customizable 2020 monthly calendar with the USA federal holidays and enough space for notes in a large box grid template. Customize it with our online calendar maker.

Download, edit, and print this four months calendar per page for the year 2020 with public holidays. The free calendar template is available as both Word and PDF document.

A printable landscape layout appointment scheduler with 2020 USA public holidays and the next & previous month reference. You can use our online calendar template editor to edit and make your own planner.

An editable portrait layout 2020 monthly journal template with the US federal holidays. The A4 size printable monthly planner template is designed to be used in DIY calendar diary project.

A green bamboo background design, portrait layout 8.5 x 11 size planner template for the year 2020 with holidays. The schedule planner template is customizable with our online Word calendar maker.

A portrait layout fillable three months at a glance calendar with USA public holidays in a classic design Microsoft Word template. The A4 size planner template fits well into both letter and legal paper size.

Download this portrait layout, printable 2020 quarterly planner template with public holidays and personalize with your favorite office software or with our calendar editor. The full year calendar is available in four pages.

Download and print this editable 2020 quarterly calendar template in a portrait layout, A4 size Word document. The four-page annual template also available in PDF format and prints well in Letter, Legal size paper.

An easy to type in the full-year template in a portrait format, 8.5 x 11 size Word and PDF document. The two months planner template with public holidays is customizable easily with our online word calendar creator tool.

Download the printable classic design 2020 monthly planner with holidays in a large box grid Microsoft Word document. The portrait layout, 12 months calendar template features large notes space at the bottom of the page.

Make your own 2020 daily planner using this free Microsoft word template. Each day in the template features four lines of notes space. The easy to write in, calendar template is customizable with our online Word and PDF calendar maker.

Download this colorful, cute design 2020 monthly planner template for kindergarten kids. The 8.5 x 11 size template is designed for the school craft calendar projects and available as both Word and PDF document.

Download and personalize this fillable 2020 monthly calendar template with large boxes and ample notes space at the right side of the page. The A4 size planner template is available as both Word and PDF and fits well in Letter, & Legal paper.

A blue bubble theme, cute calendar template for K12 school kids and teens. The landscape layout, 8.5 x 11 size printable 2020 month planner template with the US public holidays is available as both Word and PDF document.

Personalize and download this printable monthly appointment planner with federal holidays for the year 2020. The A4 size, landscape layout, full-year template features three months per page including prior and next month.

A colorful, seasonal theme design monthly 2020 calendar template available as both word and pdf document. The beautiful twelve-month planner features a unique design for each month.

Customize and download this fillable colorful floral design 2020 planner template with federal holidays in A4 (8.5 x 11) size landscape layout word document. The calendar template is most loved by kindergarten kids and teens.


This tool was released during our BlackHat Asia talk (March 28, 2019). A video recording of this talk is available at https://www.youtube.com/watch?v=9ULzZA70Dzg.

A cross-platform assistant for creating malicious MS Office documents. Can hide VBA macros, stomp VBA code (via P-Code) and confuse macro analysis tools. Runs on Linux, OSX and Windows.

If you're new to this tool, you might want to start by reading our blog post on Evil Clippy:https://outflank.nl/blog/2019/05/05/evil-clippy-ms-office-maldoc-assistant/

This project should be used for authorized testing or educational purposes only.

Current features

  • Hide VBA macros from the GUI editor
  • VBA stomping (P-code abuse)
  • Fool analyst tools
  • Serve VBA stomped templates via HTTP
  • Set/Remove VBA Project Locked/Unviewable Protection

If you have no idea what all of this is, check out the following resources first:

How effective is this?

At the time of writing, this tool is capable of getting a default Cobalt Strike macro to bypass most major antivirus products and various maldoc analysis tools (by using VBA stomping in combination with random module names).

Technology

Evil Clippy uses the OpenMCDF library to manipulate MS Office Compound File Binary Format (CFBF) files, and hereto abuses MS-OVBA specifications and features. It reuses code from Kavod.VBA.Compression to implement the compression algorithm that is used in dir and module streams (see MS-OVBA for relevant specifications).

Evil Clippy compiles perfectly fine with the Mono C# compiler and has been tested on Linux, OSX and Windows.

Compilation

A cross-platform compiled binary can be found under 'releases'.

OSX and LinuxMake sure you have Mono installed. Then execute the following command from the command line:

mcs /reference:OpenMcdf.dll,System.IO.Compression.FileSystem.dll /out:EvilClippy.exe *.cs

Now run Evil Clippy from the command line:

mono EvilClippy.exe -h

WindowsMake sure you have Visual Studio installed. Then execute the following command from a Visual Studio developer command prompt:

csc /reference:OpenMcdf.dll,System.IO.Compression.FileSystem.dll /out:EvilClippy.exe *.cs

Now run Evil Clippy from the command line:

EvilClippy.exe -h

Usage examples

Print help

Word

EvilClippy.exe -h

Hide/Unhide macros from GUI

Hide all macro modules (except the default 'ThisDocument' module) from the VBA GUI editor. This is achieved by removing module lines from the project stream [MS-OVBA 2.3.1].

EvilClippy.exe -g macrofile.doc

Undo the changes done by the hide option (-g) so that we can debug the macro in the VBA IDE.

EvilClippy.exe -gg macrofile.doc

Stomp VBA (abuse P-code)

Put fake VBA code from text file fakecode.vba in all modules, while leaving P-code intact. This abuses an undocumented feature of module streams [MS-OVBA 2.3.4.3]. Note that the VBA project version must match the host program in order for the P-code to be executed (see next example for version matching).

EvilClippy.exe -s fakecode.vba macrofile.doc

Note: VBA Stomping does not work for files saved in the Excel 97-2003 Workbook (.xls) format

Set target Office version for VBA stomping

Same as the above, but now explicitly targeting Word 2016 on x86. This means that Word 2016 on x86 will execute the P-code, while other versions of Word wil execute the code from fakecode.vba instead. Achieved by setting the appropriate version bytes in the _VBA_PROJECT stream [MS-OVBA 2.3.4.1].

EvilClippy.exe -s fakecode.vba -t 2016x86 macrofile.doc

Set/reset random module names (fool analyst tools)

Set random ASCII module names in the dir stream [MS-OVBA 2.3.4.2]. This abuses ambiguity in the MODULESTREAMNAME records [MS-OVBA 2.3.4.2.3.2.3] - most analyst tools use the ASCII module names specified here, while MS Office used the Unicode variant. By setting a random ASCII module name most P-code and VBA analysis tools crash, while the actual P-code and VBA still runs fine in Word and Excel.

EvilClippy.exe -r macrofile.doc

Note: this is known to be effective in tricking pcodedmp and VirusTotal

Set ASCII module names in the dir stream to match their Unicode counterparts. This reverses the changes made using the (-r) optoin of EvilClippy

EvilClippy.exe -rr macrofile.doc

Serve a VBA stomped template via HTTP

Service macrofile.dot via HTTP port 8080 after performing VBA stomping. If this file is retrieved, it automatically matches the target's Office version (using its HTTP headers and then setting the _VBA_PROJECT bytes accordingly).

For that, the user only has to choose the folder where he wants to look for duplicates and click the Remove duplicated items button.Compatibility: the advantage with ODIR is that it is compatible with all version of Outlook except the 2013 one. Wonderpen 1.4.4 download free. This could be, for instance, the contact items such as name or addresses, the appointments items like the subject or the location, or the text itself.Removing: after detecting the duplication, the software proceeds to delete those files rapidly.

EvilClippy.exe -s fakecode.vba -w 8080 macrofile.dot

Note: The file you are serving must be a template (.dot instead of .doc). You can set a template via a URL (.dot extension is not required!) from the developer toolbar in Word. Also, fakecode.vba must have a VB_Base attribute set for a macro from a template (this means that your facecode.vba must start with a line such as Attribute VB_Base = '0{00020906-0000-0000-C000-000000000046}').

Set/Remove VBA Project Locked/Unviewable Protection

To set the Locked/Unviewable attributes use the '-u' option:

EvilClippy.exe -u macrofile.doc

To remove the Locked/Unviewable attributes use the '-uu' option:

EvilClippy.exe -uu macrofile.doc

Note: You can remove the Locked/Unviewable attributes on files that were not locked with EvilClippy as well.

Limitations

Developed for Microsoft Word and Excel document manipulation.

As noted above, VBA stomping is not effective against Excel 97-2003 Workbook (.xls) format.

Authors

Stan Hegt (@StanHacked) / Outflank

With significant contributions by Carrie Roberts (@OrOneEqualsOne / Walmart).

Special thanks to Nick Landers (@monoxgas / Silent Break Security) for pointing me towards OpenMCDF.