-
Updated
May 6, 2022 - Java
#
pe
Here are 164 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
Feb 18, 2022 - C++
PE file viewer/editor for Windows, Linux and MacOS.
reverse-engineering
disassembler
pe
pe-format
portable-executable
hacktoberfest
windows-system
hacktoberfest2021
-
Updated
May 6, 2022 - C++
The dissection of a simple "hello world" ELF binary.
-
Updated
Dec 2, 2020 - Assembly
Portable Executable (PE) library written in .Net
-
Updated
May 6, 2022 - C#
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
May 6, 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
Apr 2, 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++
COFF and Portable Executable format described using standard C++ with no dependencies.
-
Updated
Jan 11, 2022 - C++
-
Updated
Mar 11, 2022 - C
PEiD detects most common packers, cryptors and compilers for PE files.
-
Updated
Apr 10, 2017 - HTML
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.
-
Updated
Apr 14, 2022 - Go
HatVenom is a HatSploit native 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
May 6, 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