Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/aniko33/pe-packer-x64
- Owner: aniko33
- Created: 2024-07-09T18:44:43.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-10T22:03:39.000Z (4 months ago)
- Last Synced: 2024-07-11T03:11:00.565Z (4 months ago)
- Topics: av-evasion, encryption, evasion, hacking, low-level, malware-development, packer, packer-template, pe, pe-format, pe-loader, pe-packer, template, winapi, windows-api
- Language: C
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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