oletools_rs 0.1.0

Rust port of oletools — analysis tools for Microsoft Office files (VBA macros, DDE, OLE objects, RTF exploits)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! DDE (Dynamic Data Exchange) detection across all Office formats.
//!
//! Scans for DDE commands in:
//! - Word binary (.doc) — field markers 0x13/0x14/0x15
//! - Word OOXML (.docx) — fldChar/instrText/fldSimple XML elements
//! - Excel binary (.xls) — SupBook records
//! - Excel OOXML (.xlsx) — ddeLink elements
//! - RTF — \\fldinst destinations
//! - CSV — DDE formulas (=cmd|'...'!)

pub mod csv;
pub mod doc;
pub mod docx;
pub mod field_parser;
pub mod rtf;
pub mod xls;
pub mod xlsx;