Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cybercentrecanada/assemblyline-service-elfparser
Assemblyline 4 service for Elfparser
https://github.com/cybercentrecanada/assemblyline-service-elfparser
assemblyline elf elf-parser malware-analysis
Last synced: about 2 months ago
JSON representation
Assemblyline 4 service for Elfparser
- Host: GitHub
- URL: https://github.com/cybercentrecanada/assemblyline-service-elfparser
- Owner: CybercentreCanada
- License: mit
- Created: 2021-10-28T17:00:50.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T19:40:01.000Z (4 months ago)
- Last Synced: 2024-09-18T00:15:16.011Z (4 months ago)
- Topics: assemblyline, elf, elf-parser, malware-analysis
- Language: Python
- Homepage: https://cybercentrecanada.github.io/assemblyline4_docs/
- Size: 820 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# ELFPARSER Service
This Assemblyline service runs the elfparser application against linux executables. It will extract information from the output and format it for easy viewing in the web interface.# Compiling elfparser
To compile elfparser for assemblyline, first download the latest release (1.4.0 at the time of writing) from the official repository at https://github.com/jacob-baines/elfparser.
```bash
docker run -u 0 --rm -v $(path_to_extracted_elfparser_source_code):/tmp/elfparser -it cccs/assemblyline-v4-service-base /bin/bash
apt update
apt install -y cmake libboost-all-dev build-essential
mkdir /tmp/elfparser/build
cd /tmp/elfparser/build
cmake ..
make
```