PeParser/README.md

35 lines
1.5 KiB
Markdown
Raw Normal View History

PeParser
2014-12-18 01:56:10 +01:00
=========
Provides a way to parse and extract data from windows PE files, from Java.
2014-12-18 01:56:10 +01:00
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.
2014-12-18 01:56:10 +01:00
Windows PE format and details: http://msdn.microsoft.com/en-us/library/ms809762.aspx
2014-12-18 01:56:10 +01:00
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 6+
<h4>We now release to maven!</h4>
2015-12-15 01:31:30 +01:00
There is a hard dependency in the POM file for the utilities library, which is an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function.
2015-12-15 01:31:30 +01:00
This project is **kept in sync** with the utilities library, so "jar hell" is not an issue. Please note that the util library (in it's entirety) is not added since there are **many** dependencies that are not *necessary* for this project. No reason to require a massive amount of dependencies for one or two classes/methods.
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>PeParser</artifactId>
2016-04-03 21:03:24 +02:00
<version>2.5</version>
</dependency>
```
2015-12-22 10:17:05 +01:00
Or if you don't want to use Maven, you can access the files directly here:
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/PeParser/
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/PeParser-Dorkbox-Util/
2015-12-15 02:34:18 +01:00
2016-02-10 00:40:38 +01:00
<h2>License</h2>
This project is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references.
2016-02-13 18:51:13 +01:00