Skip to content

Commit

Permalink
Merge pull request #87 from criminosis/detect_java_class
Browse files Browse the repository at this point in the history
Fixed Java magic byte detection and added test
  • Loading branch information
bojand committed Jul 5, 2023
2 parents b871c5d + 89c6648 commit da6bf94
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 8 deletions.
31 changes: 23 additions & 8 deletions src/matchers/app.rs
Expand Up @@ -44,13 +44,23 @@ pub fn is_elf(buf: &[u8]) -> bool {

/// Returns whether a buffer is compiled Java bytecode.
pub fn is_java(buf: &[u8]) -> bool {
buf.len() >= 8
&& buf[0] == 0x43
&& buf[1] == 0x41
&& buf[2] == 0x76
&& buf[3] == 0x45
&& ((buf[4] == 0x42 && buf[5] == 0x01 && buf[6] == 0x42 && buf[7] == 0x45)
|| (buf[4] == 0x44 && buf[5] == 0x30 && buf[6] == 0x30 && buf[7] == 0x44))
if buf.len() < 8 || [0xca, 0xfe, 0xba, 0xbe] != buf[0..4] {
return false;
}

//Checking the next 4 bytes are greater than or equal to 45 to distinguish from Mach-O binaries
//Mach-O "Fat" binaries also use 0xCAFEBABE as magic bytes to start the file
//Java are always Big Endian, after the magic bytes there are 2 bytes for the class file's
//minor version and then 2 bytes for the major version
//https://docs.oracle.com/javase/specs/jvms/se20/html/jvms-4.html
let minor_major_bytes = [buf[4], buf[5], buf[6], buf[7]];
if u32::from_be_bytes(minor_major_bytes) < 45 {
//Java class files start at a major version of 45 and a minor of 0
//So a value less than this shouldn't be a Java class file
return false;
}
//For due dillegence confirm that the major bytes are greater than or equal to 45
u16::from_be_bytes([buf[6], buf[7]]) >= 45
}

/// Returns whether a buffer is LLVM Bitcode.
Expand All @@ -70,7 +80,12 @@ pub fn is_mach(buf: &[u8]) -> bool {
match buf[0..4] {
[width, 0xfa, 0xed, 0xfe] if width == 0xcf || width == 0xce => true,
[0xfe, 0xed, 0xfa, width] if width == 0xcf || width == 0xce => true,
[0xca, 0xfe, 0xba, 0xbe] => true,
[0xca, 0xfe, 0xba, 0xbe] if buf.len() >= 8 => {
//Checking the next 4 bytes are less than 45 to distinguish from Java class files
//which also use 0xCAFEBABE as magic bytes
//Fat Mach-O binaries are always Big Endian
u32::from_be_bytes([buf[4], buf[5], buf[6], buf[7]]) < 45
},
_ => false,
}
}
Expand Down
Binary file added testdata/sample.class
Binary file not shown.
8 changes: 8 additions & 0 deletions tests/app.rs
Expand Up @@ -42,6 +42,14 @@ test_format!(
"sample_mach_fat"
);

test_format!(
App,
"application/java",
"class",
java,
"sample.class"
);

test_format!(App, "application/wasm", "wasm", wasm, "sample.wasm");

test_format!(App, "application/x-x509-ca-cert", "der", der, "sample.der");
Expand Down

0 comments on commit da6bf94

Please sign in to comment.