{"id":20292526,"url":"https://github.com/mauricelambert/elfanalyzer","last_synced_at":"2026-02-18T01:03:29.264Z","repository":{"id":191797390,"uuid":"685682280","full_name":"mauricelambert/ElfAnalyzer","owner":"mauricelambert","description":"This module parses and analyzes ELF file for Forensic and investigations.","archived":false,"fork":false,"pushed_at":"2024-08-16T16:11:16.000Z","size":33,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-27T05:42:33.136Z","etag":null,"topics":["analysis","elf","elf-analyzer","elf-parser","forensic-analysis","forensics","investigations","malware-analysis"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mauricelambert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-08-31T19:11:59.000Z","updated_at":"2025-01-28T07:42:46.000Z","dependencies_parsed_at":"2023-08-31T20:00:01.441Z","dependency_job_id":null,"html_url":"https://github.com/mauricelambert/ElfAnalyzer","commit_stats":null,"previous_names":["mauricelambert/elfanalyzer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mauricelambert/ElfAnalyzer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FElfAnalyzer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FElfAnalyzer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FElfAnalyzer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FElfAnalyzer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mauricelambert","download_url":"https://codeload.github.com/mauricelambert/ElfAnalyzer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FElfAnalyzer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29565017,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T00:47:08.760Z","status":"ssl_error","status_checked_at":"2026-02-18T00:45:26.718Z","response_time":100,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analysis","elf","elf-analyzer","elf-parser","forensic-analysis","forensics","investigations","malware-analysis"],"created_at":"2024-11-14T15:17:39.074Z","updated_at":"2026-02-18T01:03:29.239Z","avatar_url":"https://github.com/mauricelambert.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ElfAnalyzer\r\n\r\n## Description\r\n\r\nThis module parses and analyzes ELF file for Forensic and investigations.\r\n\r\nParses:\r\n - ELF identification\r\n - ELF headers\r\n - Program headers\r\n - ELF sections\r\n - ELF symbols tables\r\n - Comment section\r\n - Note sections\r\n - Dynamic section\r\n\r\n## Requirements\r\n\r\nThis package require:\r\n - python3\r\n - python3 Standard Library\r\n\r\n### Optional\r\n\r\n - matplotlib\r\n - EntropyAnalysis\r\n\r\n\u003e *Matplotlib* and *EntropyAnalysis* are not installed by *ProgramExecutableAnalyzer* because this package can be installed on server without GUI.\r\n\u003e You can install optinal required packages with the following command: `python3 -m pip install matplotlib EntropyAnalysis`\r\n\r\n## Installation\r\n\r\n```bash\r\npython3 -m pip install ElfAnalyzer\r\n```\r\n\r\n```bash\r\ngit clone \"https://github.com/mauricelambert/ElfAnalyzer.git\"\r\ncd \"ElfAnalyzer\"\r\npython3 -m pip install .\r\n```\r\n\r\n## Usages\r\n\r\n### Command line\r\n\r\n```bash\r\nElfAnalyzer              # Using CLI package executable\r\npython3 -m ElfAnalyzer   # Using python module\r\npython3 ElfAnalyzer.pyz  # Using python executable\r\nElfAnalyzer.exe          # Using python Windows executable\r\n\r\n./ElfAnalyzer.pyz ./local/ElfFile\r\nElfAnalyzer.exe -u https://github.com/mauricelambert/FastRC4/releases/download/v0.0.1/librc4.so\r\n./ElfAnalyzer.pyz -v ./local/ElfFile\r\npython3 ElfAnalyzer.pyz -c ./local/ElfFile\r\n```\r\n\r\n### Python script\r\n\r\n```python\r\nfrom ElfAnalyzer import *\r\n\r\nfile = open(\"./local/ElfFile\", \"rb\")\r\nelfindent, elf_headers, programs_headers, elf_sections, symbols_tables, comments, note_sections, notes, dynamics, sections = parse_elffile(file)\r\ncli(elfindent, elf_headers, programs_headers, elf_sections, symbols_tables, comments, notes, dynamics, sections)\r\nfile.close()\r\n```\r\n\r\n## Links\r\n\r\n - [Pypi](https://pypi.org/project/ElfAnalyzer)\r\n - [Github](https://github.com/user/ElfAnalyzer)\r\n - [Documentation](https://mauricelambert.github.io/info/python/security/ElfAnalyzer.html)\r\n - [Python executable](https://mauricelambert.github.io/info/python/security/ElfAnalyzer.pyz)\r\n - [Python Windows executable](https://mauricelambert.github.io/info/python/security/ElfAnalyzer.exe)\r\n\r\n## License\r\n\r\nLicensed under the [GPL, version 3](https://www.gnu.org/licenses/).\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricelambert%2Felfanalyzer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmauricelambert%2Felfanalyzer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricelambert%2Felfanalyzer/lists"}