Adrian Stein

Results 4 comments of Adrian Stein

Yes of course! Here is the source code if you want to compile it yourself (but the binary is also attached, see below): ```rust fn main() { println!("Here are some...

Sadly not, undoing the changes from the specified commit does not resolve the issue. I ran the code I provided again (ofc. with the changed version of goblin), and the...

> In your example code could you try using the `name_offset()` api on Symbol? e.g. change this line from`let strtab_offset = u32::from_le_bytes(sym.name[4..8].try_into().unwrap());` to use `let stratb_offset = sym.name_offset().unwrap()` I needed...

> This is wrong because it will try to parse auxiliary symbols as regular symbols. Use `symbols.iter()` instead. True. It seems to be working now. Thank you for your help...