https://github.com/cybersecurity-dev/elf-static-toolkit
ELF Static Toolkit | Executable and Linkable Format (ELF) Analysing Toolkit
https://github.com/cybersecurity-dev/elf-static-toolkit
elf elf-header elf-parser lief readelf reverse-engineering
Last synced: about 1 month ago
JSON representation
ELF Static Toolkit | Executable and Linkable Format (ELF) Analysing Toolkit
- Host: GitHub
- URL: https://github.com/cybersecurity-dev/elf-static-toolkit
- Owner: cybersecurity-dev
- License: apache-2.0
- Created: 2024-07-12T13:06:54.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-13T12:19:12.000Z (8 months ago)
- Last Synced: 2025-02-13T12:36:28.581Z (8 months ago)
- Topics: elf, elf-header, elf-parser, lief, readelf, reverse-engineering
- Language: Python
- Homepage: https://man7.org/linux/man-pages/man5/elf.5.html
- Size: 64.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [ELF](https://youtube.com/playlist?list=PL9V4Zu3RroiVlMaBS8X6_nkXz6FPyGa-O&si=-W_udRBVwMf6kdi5) Static Toolkit | Executable and Linkable Format ([ELF](https://www.cs.cmu.edu/afs/cs/academic/class/15213-f00/docs/elf.pdf)) Analysing Toolkit
Install required tools on Linux
### For Ubuntu 18.04, 20.04, 22.04
```bash
sudo apt-get update
```Install required tools on Windows
### For Windows 11
```powershell
```Install required python libs
### pip install
```script
pip install -r requirements.txt
python3 setup.py install
```### conda install
```script
conda config --add channels conda-forge
conda install --file requirements_conda.txt
python3 setup.py install
```