PeParser/README.md

48 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

PeParser
2014-12-18 01:56:10 +01:00
=========
2023-09-15 23:32:59 +02:00
###### [![Dorkbox](https://badge.dorkbox.com/dorkbox.svg "Dorkbox")](https://git.dorkbox.com/dorkbox/PeParser) [![Github](https://badge.dorkbox.com/github.svg "Github")](https://github.com/dorkbox/PeParser) [![Gitlab](https://badge.dorkbox.com/gitlab.svg "Gitlab")](https://gitlab.com/dorkbox/PeParser)
2019-03-17 23:08:17 +01:00
2017-02-18 23:59:18 +01:00
Provides a light-weight 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
2021-04-09 15:29:55 +02:00
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 8+
2017-02-18 23:59:18 +01:00
 
 
2017-02-18 23:59:18 +01:00
Maven Info
---------
```
<dependencies>
...
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>PeParser</artifactId>
2023-08-21 12:05:24 +02:00
<version>3.3</version>
</dependency>
</dependencies>
```
2018-08-18 21:17:58 +02:00
Gradle Info
---------
2021-04-09 15:29:55 +02:00
```
2018-08-18 21:17:58 +02:00
dependencies {
...
2023-08-21 12:05:24 +02:00
implementation("com.dorkbox:PeParser:3.3")
2018-08-18 21:17:58 +02:00
}
2021-04-09 15:29:55 +02:00
```
2018-08-18 21:17:58 +02:00
2015-12-22 10:17:05 +01:00
Or if you don't want to use Maven, you can access the files directly here:
2018-08-18 21:17:58 +02:00
https://repo1.maven.org/maven2/com/dorkbox/PeParser/
2015-12-15 02:34:18 +01:00
2016-02-10 00:40:38 +01:00
2017-02-18 23:59:18 +01:00
License
---------
2016-04-05 14:47:40 +02:00
This project is © 2014 dorkbox llc, and 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