fix(svc): rdpdr channel fuzzing harness and associated issues (#408)

This commit is contained in:
Norbert Szetei
2024-03-11 06:28:27 -04:00
committed by GitHub
parent e92d8c3e17
commit c4193371bd
10 changed files with 41 additions and 7 deletions
+7 -1
View File
@@ -33,7 +33,13 @@ pub const CARGO: &str = env!("CARGO");
pub const WASM_PACKAGES: &[&str] = &["ironrdp-web"];
pub const FUZZ_TARGETS: &[&str] = &["pdu_decoding", "rle_decompression", "bitmap_stream", "cliprdr_format"];
pub const FUZZ_TARGETS: &[&str] = &[
"pdu_decoding",
"rle_decompression",
"bitmap_stream",
"cliprdr_format",
"channel_processing",
];
fn main() -> anyhow::Result<()> {
let args = match cli::parse_args() {