Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aniko33/pe-packer-x64

A simple, reproducible PE Packer (x64)
https://github.com/aniko33/pe-packer-x64

av-evasion encryption evasion hacking low-level malware-development packer packer-template pe pe-format pe-loader pe-packer template winapi windows-api

Last synced: 13 days ago
JSON representation

A simple, reproducible PE Packer (x64)

Awesome Lists containing this project

README

        

# Table Of Content

- [Note](#note)
- [Compile](#compile)
- [Usage](#usage)
- [Why this repository](#why-this-repository)
- [Sources](#resources)

# Note

**This is a template for a packer**, you can modify it to your own use case

# Compile

```bash
make # output: unpacker.exe
```

# Usage

```bash
python packer.py file_to_load.exe # output: out.exe
```

# Why this repository

I decided to take the x86 packer from the [wiredriver tutorial](https://wirediver.com/tutorial-writing-a-pe-packer-intro/) and make it x64 to understand what the differences are between an x86 and x64 PE

# Resources

- https://0xrick.github.io/win-internals/pe1/
- https://wirediver.com/tutorial-writing-a-pe-packer-intro/
- https://github.com/NUL0x4C/AtomPePacker