Windows PE (Portable Executable) file parser for Java 6+
 
 
Go to file
Robinson 4a875bf7b7
Updated build deps
2023-10-09 12:31:49 +02:00
gradle/wrapper updated gradle 2023-08-21 02:42:22 +02:00
src/dorkbox/peParser updated copyright 2023-08-21 12:13:48 +02:00
src9 updated copyright 2023-08-21 12:13:48 +02:00
.gitignore version 3.2 and convert to kotlin 2023-08-21 02:44:23 +02:00
LICENSE version 3.2 and convert to kotlin 2023-08-21 02:44:23 +02:00
LICENSE.Apachev2 Updated dist, changed from included src in jar, to separate file 2014-12-30 00:54:35 +01:00
LICENSE.BSD3 Updated license info 2021-04-09 15:30:47 +02:00
LICENSE.CC0 Updated license info 2021-04-09 15:30:47 +02:00
LICENSE.MIT Updated license info 2021-04-09 15:30:47 +02:00
README.md removed bitbucket 2023-09-15 23:32:59 +02:00
build.gradle.kts Updated build deps 2023-10-09 12:31:49 +02:00
gradle.properties Updated build deps 2023-10-09 12:31:49 +02:00
gradlew updated gradle 2023-08-21 02:42:22 +02:00
gradlew.bat updated gradle 2023-08-21 02:42:22 +02:00
settings.gradle.kts updated project name 2023-08-21 02:42:48 +02:00

README.md

PeParser

Dorkbox Github Gitlab

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.3</version>
    </dependency>
</dependencies>

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.