nsis 0.1.0

Parse and inspect NSIS installer binaries
Documentation
//! High-level NSIS installer API.
//!
//! This module ties together all lower-level parsers into a convenient
//! [`NsisInstaller`] entry point. It handles PE overlay detection,
//! decompression, header parsing, version detection, and provides
//! iterators over all installer structures.
//!
//! The [`analysis`] submodule provides security-focused iterators for
//! malware analysis: plugin calls, exec commands, registry operations,
//! shortcuts, and embedded uninstaller stubs.

pub mod analysis;
mod files;
mod nsisinstaller;

pub use analysis::{
    ExecCommand, ExecIter, ExecOp, PluginCall, PluginCallIter, RegDelete, RegRead, RegValueType,
    RegWrite, RegistryIter, RegistryOp, ShellExecOp, Shortcut, ShortcutIter, Uninstaller,
    UninstallerIter,
};
pub use files::{ExtractedFile, FileIter};
pub use nsisinstaller::NsisInstaller;