-
Updated
Apr 2, 2022 - JavaScript
#
elf
Here are 408 public repositories matching this topic...
Program for determining types of files for Windows, Linux and MacOS.
html
debugger
detect
packer
entropy
static-analysis
reverse-engineering
disassembler
detector
mach-o
elf
malware-analysis
binary-analysis
program-analysis
macho
malware-research
hacktoberfest
unpacker
hacktoberfest2021
enhancement
API
Good First Issue
Issue that can be addressed without an in-depth understanding of LIEF
DIE engine
entropy
reverse-engineering
signature
disassembler
elf
binary-analysis
program-analysis
hacktoberfest
yara
unpacker
hacktoberfest2021
-
Updated
Apr 10, 2022 - C++
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
ELF file viewer/editor for Windows, Linux and MacOS.
reverse-engineering
elf
hacktoberfest
elf-parser
elf64
elf-binaries
elf-format
linux-system-programming
hacktoberfest2021
-
Updated
Apr 10, 2022 - C++
HaboMalHunter is a sub-project of Habo Malware Analysis System (https://habo.qq.com), which can be used for automated malware analysis and security assessment on the Linux system.
-
Updated
Oct 13, 2019 - Python
A tool to recover a fully analyzable .ELF from a raw kernel, through extracting the kernel symbol table (kallsyms)
-
Updated
Mar 30, 2022 - Python
A powerful static binary rewriting tool
binary
reverse-engineering
elf
binary-analysis
binary-instrumentation
binary-rewriting
binary-patching
e9patch
-
Updated
Apr 6, 2022 - C++
The dissection of a simple "hello world" ELF binary.
-
Updated
Dec 2, 2020 - Assembly
An improved version of AndroidNativeEmu,Allow running android elf on PC
-
Updated
Feb 15, 2022 - Python
Open
FEATURE REQUEST
fire-bot
commented
May 10, 2021
Sent by Muhammed Hussain (muhammedhussain1990@gmail.com). Created by fire.
Create search option for in search of lib.so files
ELFIO - ELF (Executable and Linkable Format) reader and producer implemented as a header only C++ library
-
Updated
Feb 27, 2022 - C++
All-in-One malware analysis tool.
windows
linux
packer
osx
strings
static-analysis
malware
apk
python3
ransomware
antivirus
elf
malware-analysis
termux
all-in-one
virustotal
exe
threat-analysis
security-tools
suspicious-files
-
Updated
Apr 1, 2022 - YARA
Utils use to dump android ELF from memory and do some fix including the ELF section header rebuilding
-
Updated
Jun 1, 2020 - C
Chain Reactor is an open source framework for composing executables that simulate adversary behaviors and techniques on Linux endpoints.
-
Updated
Feb 3, 2022 - C
Search for code cave in all binaries
-
Updated
Aug 29, 2019 - Python
Improve this page
Add a description, image, and links to the elf topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the elf 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