Skip to content

Commit

Permalink
removed some debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
marirs committed Nov 5, 2024
1 parent 63aa6f6 commit 0219fd2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capa"
version = "0.3.18"
version = "0.3.19"
description = "File capability extractor."
authors = ["Marirs <[email protected]>", "Andrey Mnatsakanov <[email protected]>", "Jorge Alejandro Durán Royo<[email protected]>"]
keywords = ["capa", "fce", "capability", "aslr", "reverse"]
Expand Down
2 changes: 1 addition & 1 deletion src/extractor/smda.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ impl Extractor {
}

pub fn get_elf_os(elf: &goblin::elf::Elf) -> Result<Os> {
eprintln!("{}", elf.header.e_ident[7]);
// eprintln!("{}", elf.header.e_ident[7]);
match elf.header.e_ident[7] {
0x00 => Ok(Os::UNDEFINED),
0x01 => Ok(Os::HPUX),
Expand Down
2 changes: 1 addition & 1 deletion src/rules/features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ impl RegexFeature {
let rr = match fancy_regex::Regex::new(&rre) {
Ok(s) => s,
Err(e) => {
println!("{:?}", e);
// println!("{:?}", e);
return Err(Error::FancyRegexError(Box::new(e)));
}
};
Expand Down

0 comments on commit 0219fd2

Please sign in to comment.