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;