boreal 1.1.0

A library to evaluate YARA rules, used to scan bytes for textual and binary pattern
Documentation
1
2
3
4
5
6
7
8
use crate::memory::FragmentedMemory;
use crate::scanner::ScanError;

mod sys;

pub fn process_memory(pid: u32) -> Result<Box<dyn FragmentedMemory>, ScanError> {
    sys::process_memory(pid)
}