Cybersecurity-Projects/PROJECTS/intermediate/binary-analysis-tool
dependabot[bot] 4920dadf35
chore(deps): bump axios
Bumps [axios](https://github.com/axios/axios) from 1.13.5 to 1.15.0.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](https://github.com/axios/axios/compare/v1.13.5...v1.15.0)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.15.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-10 21:50:33 +00:00
..
backend feat: sbom generator & vulnerability matcher + docstrings across 6 projects 2026-04-08 23:53:40 -04:00
frontend chore(deps): bump axios 2026-04-10 21:50:33 +00:00
infra project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
learn project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
scripts project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
test-specimens project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
.env.example project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
.gitignore project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
README.md update 2026-04-01 00:56:17 -04:00
cloudflared.compose.yml project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
compose.yml project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
dev.compose.yml project binary-analysis-tool complete 2026-03-30 15:28:16 -04:00
justfile update 2026-04-01 00:56:17 -04:00

README.md

 █████╗ ██╗  ██╗██╗   ██╗███╗   ███╗ ██████╗ ██████╗ ████████╗███████╗███╗   ███╗
██╔══██╗╚██╗██╔╝██║   ██║████╗ ████║██╔═══██╗██╔══██╗╚══██╔══╝██╔════╝████╗ ████║
███████║ ╚███╔╝ ██║   ██║██╔████╔██║██║   ██║██████╔╝   ██║   █████╗  ██╔████╔██║
██╔══██║ ██╔██╗ ██║   ██║██║╚██╔╝██║██║   ██║██╔══██╗   ██║   ██╔══╝  ██║╚██╔╝██║
██║  ██║██╔╝ ██╗╚██████╔╝██║ ╚═╝ ██║╚██████╔╝██║  ██║   ██║   ███████╗██║ ╚═╝ ██║
╚═╝  ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚═╝     ╚═╝ ╚═════╝ ╚═╝  ╚═╝   ╚═╝   ╚══════╝╚═╝     ╚═╝

>>> Live Demo

Cybersecurity Projects Rust React TypeScript License: AGPLv3 Docker

Static binary analysis engine with multi-format parsing, YARA scanning, x86 disassembly, and MITRE ATT&CK threat scoring.

This is a quick overview — security theory, architecture, and full walkthroughs are in the learn modules.

What It Does

  • Multi-format binary parsing (ELF, PE, Mach-O) with section analysis and import table extraction
  • YARA rule scanning with 14 built-in detection rules for malware, packers, and crypto patterns
  • x86/x86_64 disassembly with control flow graph generation from entry points and symbol tables
  • Shannon entropy analysis for detecting packed or encrypted sections
  • 8-category threat scoring system (max 100 points) with MITRE ATT&CK technique mapping
  • Pass-based analysis pipeline with topological ordering and dependency resolution

Quick Start

docker compose up -d

Visit http://localhost:22784

[!TIP] This project uses just as a command runner. Type just to see all available commands.

Install: curl -sSf https://just.systems/install.sh | bash -s -- --to ~/.local/bin

Stack

Backend: Rust, Axum, goblin, iced-x86, yara-x, SQLx, PostgreSQL

Frontend: React 19, TypeScript, Vite, TanStack Query, Zustand, Zod, SCSS Modules

Infra: Docker Compose, Nginx, PostgreSQL 18

Learn

This project includes step-by-step learning materials covering security theory, architecture, and implementation.

Module Topic
00 - Overview Prerequisites and quick start
01 - Concepts Security theory and real-world breaches
02 - Architecture System design and data flow
03 - Implementation Code walkthrough
04 - Challenges Extension ideas and exercises

License

AGPL 3.0