-
Updated
Jul 5, 2022 - Java
#
pe
Here are 168 public repositories matching this topic...
A bridge/proxy allowing you to connect to Minecraft: Java Edition servers with Minecraft: Bedrock Edition.
java
minecraft
translator
bukkit
spigot
bungee
proxy
protocol
velocity
bedrock
packet
pe
hacktoberfest
bedrock-edition
geyser
java-edition
geysermc
bedrock-to-java
enhancement
API
Good First Issue
Issue that can be addressed without an in-depth understanding of LIEF
Stealing Signatures and Making One Invalid Signature at a Time
-
Updated
Aug 11, 2021 - Python
11
Shnatsel
commented
Mar 5, 2019
Attempting to decode any of the attached files with goblin::elf::Elf::parse crashes the process. Memory allocator runs out of virtual memory and the process is aborted.
Found via AFL.rs. Fuzzing harness: https://github.com/Shnatsel/goblin/blob/master/fuzz-afl/src/main.rs
good first issue
Good issue for beginner/new to goblin
Portable Executable parsing library (from PE-bear)
-
Updated
Jun 23, 2022 - C++
PE file viewer/editor for Windows, Linux and MacOS.
reverse-engineering
disassembler
pe
pe-format
portable-executable
hacktoberfest
windows-system
hacktoberfest2021
-
Updated
Jul 6, 2022 - C++
Portable Executable (PE) library written in .Net
-
Updated
Jul 5, 2022 - C#
The dissection of a simple "hello world" ELF binary.
-
Updated
Dec 2, 2020 - Assembly
A library for editing PE files with full .NET metadata support
framework
native
dotnet
reverse-engineering
disassembler
writer
reader
msil
cil
pe
portable-executable
il
metadata-editor
pe-analyzer
-
Updated
Jun 25, 2022 - C#
Resources About Windows Security. 1100+ Open Source Tools. 3300+ Blog Post and Videos.
-
Updated
Feb 20, 2020
Hybrid mode plugin to allow for connections from Geyser to join online mode servers.
plugin
java
minecraft
bukkit
bungee
velocity
bedrock
pe
bedrock-edition
geyser
java-edition
geysermc
floodgate
bedrock-to-java
hacktoberfest2021
-
Updated
Jul 3, 2022 - Java
DLL Hijacking Detection Tool
-
Updated
Aug 6, 2019 - C++
Search for code cave in all binaries
-
Updated
Aug 29, 2019 - Python
Persistent IAT hooking application - based on bearparser
-
Updated
Sep 2, 2021 - C++
-
Updated
Mar 11, 2022 - C
COFF and Portable Executable format described using standard C++ with no dependencies.
-
Updated
Jan 11, 2022 - C++
A ⚡ lightweight Go package to parse, analyze and extract metadata from Portable Executable (PE) binaries. Designed for malware analysis tasks and robust against PE malformations.
go
golang
parser
parsing
malware
malware-analysis
pe
portable-executable
pe-file
coff
pe-parse
pe-malformations
-
Updated
Jul 5, 2022 - Go
A bunch of parsers for PE and PDB formats in C++
cpp
pdb
modern-cpp
header-only
pe
pe-format
portable-executable
pe-file
pe-analyzer
pdb-files
pdb-parser
pdb-structure
pe-applications
pe-parser
-
Updated
May 4, 2022 - C++
PEiD detects most common packers, cryptors and compilers for PE files.
-
Updated
Apr 10, 2017 - HTML
HatVenom is a powerful payload generation tool that provides support for all common platforms and architectures.
exploit
binary
malware
executable
exploits
shellcode
elf
binary-exploitation
macho
pe
payload
payloads
exe
architectures
shellcodes
shellcode-injection
entysec
-
Updated
Jun 4, 2022 - Python
Improve this page
Add a description, image, and links to the pe topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the pe topic, visit your repo's landing page and select "manage topics."
I'm currently using LIEF in a project that uses mypy for Python type-checking. We use an ignore directive on our
import lief #type:ignorestatements, as type stubs for lief are not currently available. I've been considering generating and contributing stubs to https://github.com/python/typeshed, so that we can remove the ignores, and maybe others will find them useful. H