dalvik icon indicating copy to clipboard operation
dalvik copied to clipboard

Dalvik parser in pure Rust.

Results 4 dalvik issues
Sort by recently updated
recently updated
newest added

Here is the tracking issue for parser implementations: - [x] Header - [x] StringIdList - [x] TypeIdList - [x] PrototypeIdList - [x] FieldIdList - [x] MethodIdList - [x] ClassDefList -...

Help wanted
D-Moderate
New feature
T-Parsing

[nom](https://crates.io/crates/nom) is a parser combinator crate which makes parsing binary formats quite easy. I was thinking about starting a dex parser using it, but your project already exists so it’d...

Enhancement

Currently we only have big integration tests (that still do not pass for not being implemented), but no tests for small element parsers. We need those to verify correctness.

Enhancement
Help wanted
D-Easy
T-Tests

Seems that there is some unknown data between the `class_defs` section and the `data` section. For example, the test file has 76,792 bytes of unknown data. We should understand what...

Help wanted
Question