8000 GitHub - mdeg/dexparser: Rust library to parse Android's DEX file format
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mdeg/dexparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dexparser

A Rust library for parsing Android's DEX file format with parser combinators.

What is DEX?

The Dalvik Executable (DEX) format is a file format used by Android to encode compiled Dalvik bytecode. It is distributed as part of a packaged Android application package (APK) and executed by Android phones.

The best reference for the format is the official document, which this library is based off.

Usage

    let mut file = File::open(path).unwrap();
    let mut bytes = Vec::new();
    file.read_to_end(&mut bytes);

    match dexparser::parse(&bytes) {
        Ok(res) => { /* do something */ },
        Err(e) => { /* handle error */ }
    }

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

Rust library to parse Android's DEX file format

Resources

License

Stars

Watchers

Forks

3D93

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages

0