mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 17:51:32 +00:00
restrict afl-showmap in_file size
This commit is contained in:
@ -386,7 +386,7 @@ static u32 read_file(u8 *in_file) {
|
||||
|
||||
}
|
||||
|
||||
in_len = st.st_size;
|
||||
in_len = st.st_size > MAX_FILE ? MAX_FILE : st.st_size;
|
||||
in_data = ck_alloc_nozero(in_len);
|
||||
|
||||
ck_read(fd, in_data, in_len, in_file);
|
||||
|
Reference in New Issue
Block a user