You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
![]() |
2 years ago | |
---|---|---|
gradle/wrapper | 2 years ago | |
src/dorkbox/peParser | 2 years ago | |
.gitignore | 4 years ago | |
LICENSE | 2 years ago | |
LICENSE.Apachev2 | 8 years ago | |
LICENSE.BSD2 | 2 years ago | |
LICENSE.BSD3 | 2 years ago | |
LICENSE.CC0 | 2 years ago | |
LICENSE.EPL | 2 years ago | |
LICENSE.GPLv2_CP | 2 years ago | |
LICENSE.MIT | 2 years ago | |
README.md | 2 years ago | |
build.gradle.kts | 2 years ago | |
gradlew | 2 years ago | |
gradlew.bat | 2 years ago | |
settings.gradle.kts | 4 years ago |
README.md
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
<dependencies>
...
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>PeParser</artifactId>
<version>3.1</version>
</dependency>
</dependencies>
Gradle Info
dependencies {
...
implementation("com.dorkbox:PeParser:3.1")
}
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.