https://github.com/dorkbox/peparser
Windows PE (Portable Executable) file parser for Java 6+
https://github.com/dorkbox/peparser
Last synced: over 1 year ago
JSON representation
Windows PE (Portable Executable) file parser for Java 6+
- Host: GitHub
- URL: https://github.com/dorkbox/peparser
- Owner: dorkbox
- License: other
- Created: 2014-12-18T00:54:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-05-12T21:24:31.000Z (about 2 years ago)
- Last Synced: 2025-03-29T02:12:12.714Z (over 1 year ago)
- Language: Kotlin
- Homepage:
- Size: 356 KB
- Stars: 24
- Watchers: 5
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PeParser
=========
###### [](https://git.dorkbox.com/dorkbox/PeParser) [](https://github.com/dorkbox/PeParser) [](https://gitlab.com/dorkbox/PeParser)
Provides a light-weight way to parse and extract data from windows PE files, from Java.
This library can access meta-data information and details from within the PE file, and specifically it was designed to access and copy out files from the .rsrc section.
Windows PE format and details: http://msdn.microsoft.com/en-us/library/ms809762.aspx
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 8+
Maven Info
---------
```
...
com.dorkbox
PeParser
3.3
```
Gradle Info
---------
```
dependencies {
...
implementation("com.dorkbox:PeParser:3.3")
}
```
Or if you don't want to use Maven, you can access the files directly here:
https://repo1.maven.org/maven2/com/dorkbox/PeParser/
License
---------
This project is © 2014 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references.