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
//! RTF object extraction and analysis.
//!
//! Parses Rich Text Format files, extracts embedded OLE objects,
//! and detects CVE patterns (CVE-2017-0199, CVE-2017-11882).

pub mod cve;
pub mod object;
pub mod parser;