Skip to content
View 400lbhacker's full-sized avatar
  • tucson az

Block or report 400lbhacker

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
400lbhacker/README.md

🍌 400lbhacker 🍌

Reverse Engineering • Binary Analysis • Security Research • Systems Engineering


🧠 About

I build analysis platforms that help understand complex software at scale.

My work focuses on reverse engineering, binary analysis, malware research, program visualization, and automation. Most of my projects are built from scratch around large datasets, graph analysis, and interactive tooling rather than simple proof-of-concepts.

Current areas of interest include:

  • Binary analysis & reverse engineering
  • Program graph construction and visualization
  • Static + dynamic analysis pipelines
  • Vulnerability research
  • Malware analysis & behavioral clustering
  • OSINT and security automation
  • Bioinformatics visualization
  • Generative algorithms (CPPN / HyperNEAT)

I enjoy building tooling that makes difficult technical problems easier to explore.

🎯 Areas of Expertise

  • Reverse Engineering

  • Malware Analysis

  • Static Binary Analysis

  • Dynamic Analysis & Debugging

  • Program Graph Construction

  • Call Graph Recovery

  • Control Flow Analysis

  • Binary Visualization

  • SQL-backed Program Analysis

  • Vulnerability Research

  • Python Automation

  • Interactive Data Visualization

  • Bioinformatics Tool Development

  • Evolutionary Algorithms

  • AI-assisted Security Research

  • 🚀 Featured Projects

Project Description
Binary Atlas Interactive reverse engineering platform for large-scale binary analysis with graph visualization, clustering, SQL querying, and AI-assisted exploration.
Nightingale 3D HyperNEAT/CPPN evolutionary design engine for procedural 3D model generation, hybridization, mutation, and texture synthesis.
RNAverse RNA secondary structure visualization platform with RNAfold/RNAplot integration, motif discovery, mutation simulation, and AI-assisted interpretation.
SaguaroScope Interactive genome browser for the saguaro cactus with BLAST annotations, DuckDB-backed genomic search, sequence extraction, and pathway visualization.

Binary Atlas

screenshot

Interactive Binary Intelligence Platform
Reverse Engineering • Call Graph Analysis • Vulnerability Discovery • API Correlation • Graph Exploration

Python SQLite Flask radare2 Cutter r2ai NetworkX Graph Analysis Reverse Engineering Cybersecurity


What is Binary Atlas?

Binary Atlas is an interactive reverse engineering and vulnerability research platform that transforms raw binaries into an explorable intelligence graph.

Instead of manually navigating thousands of functions inside a disassembler, Binary Atlas builds a searchable knowledge graph linking:

  • Functions
  • Imports
  • API usage
  • Wrappers & thunks
  • Call relationships
  • Security-relevant behaviors
  • Clusters
  • Risk indicators
  • Cross references
  • Semantic categories

The result is a system that allows researchers to move from:

Binary
   ↓
Disassembly
   ↓
Function Graph
   ↓
Behavior Graph
   ↓
Vulnerability Discovery

Core Capabilities

Interactive Call Graph

Explore thousands of functions in real time.

  • Function-to-function call relationships
  • Import ownership mapping
  • Recursive traversal
  • Path finding
  • Connected component exploration
  • Entry point discovery
  • Cluster visualization
QuarantineLocation
      ↓
MoveFileWrapper
      ↓
MoveFileExW

Instead of hunting through hundreds of disassembly windows, the relationship is visible immediately.


API Intelligence

Binary Atlas automatically categorizes APIs into behavioral groups.

Examples:

Filesystem

  • CreateFileW
  • DeleteFileW
  • MoveFileExW
  • CopyFileExW
  • ReadFile
  • WriteFile

Registry

  • RegOpenKeyExW
  • RegSetValueExW
  • RegDeleteKeyW

Networking

  • WinHttpOpen
  • WinHttpConnect
  • WinHttpSendRequest

Threading

  • CreateThread
  • Sleep
  • ExitThread

Synchronization

  • CreateMutexW
  • SetEvent
  • WaitForSingleObject

Anti-Analysis

  • IsDebuggerPresent
  • QueryPerformanceCounter
  • GetTickCount
  • OutputDebugStringW

Security Signal Detection

Binary Atlas automatically highlights suspicious behaviors.

Examples:

  • Anti-debugging
  • Security checks
  • Fail-fast logic
  • Exception-heavy routines
  • Bitwise-heavy code
  • Guard logic
  • Wrapper functions
  • Process interaction
  • File-system modification chains

Import Ownership Analysis

Automatically discovers:

Function
      ↓
Wrapper
      ↓
Import

Examples:

QuarantineLocation
      ↓
MoveFileWrapper
      ↓
MoveFileExW

This is extremely useful when analyzing:

  • Malware
  • EDRs
  • AV engines
  • Windows services
  • Enterprise software

where API calls are often hidden behind dozens of wrappers.


Semantic Clustering

Functions are grouped based on observed behavior.

Example clusters:

Filesystem
Networking
Registry
Crypto
Memory
Threading
Synchronization
Injection
Anti-Analysis
Execution

Rather than viewing 1,000+ isolated functions, analysts can navigate the binary at a subsystem level.


Vulnerability Discovery

Binary Atlas assists vulnerability research by automatically identifying:

Race Conditions

Lock
 ↓
Release
 ↓
Shared Object
 ↓
Reacquire

TOCTOU Candidates

Check
 ↓
Use

Dangerous File Operations

  • MoveFileExW
  • DeleteFileW
  • CreateFileW

without:

  • GetFinalPathNameByHandleW
  • PathFileExistsW
  • Validation routines

Memory Risks

  • HeapFree
  • VirtualProtect
  • HeapReAlloc
  • FreeLibrary

Privileged Operations

  • OpenProcess
  • ReadProcessMemory
  • CreateProcessAsUserW

XREF Exploration

Instantly pivot between:

Import
 ↓
Wrapper
 ↓
Caller
 ↓
Caller of Caller

Find:

  • Who calls this?
  • What does it call?
  • Where does data originate?
  • Which subsystem owns it?

Offline SQL Analysis

Every analysis exports to SQLite.

Researchers can perform custom investigations:

SELECT *
FROM instruction_refs
WHERE target_name='MoveFileExW';
SELECT *
FROM functions
WHERE risk_score > 80;
SELECT *
FROM edges
WHERE type='call';

Perfect for:

  • Research
  • Automation
  • Reporting
  • CI pipelines
  • Large-scale binary comparison

Graph-Based Investigation

Ask questions such as:

Filesystem

Show every path leading to MoveFileExW

Networking

Show all WinHTTP consumers

Registry

Find registry write chains

Threading

Show thread creation entry points

Security

Find all anti-analysis functions

Vulnerability Research

Find file operations lacking validation


Binary Intelligence Dashboard

Binary Atlas provides immediate visibility into:

  • Functions
  • Imports
  • Exports
  • Sections
  • Clusters
  • Graph density
  • Security indicators
  • Risk score
  • API ownership
  • Call relationships

without requiring users to manually traverse thousands of nodes.


Designed For

  • Reverse Engineers
  • Malware Analysts
  • Vulnerability Researchers
  • Security Engineers
  • Detection Engineers
  • Incident Responders
  • Threat Hunters
  • Red Team Operators
  • Software Security Researchers

Long-Term Vision

Traditional workflows separate:

Disassembler

Debugger

Decompiler

Database

Notes

Graphs

Binary Atlas aims to unify them into a single intelligence platform.

Future directions include:

  • Dynamic execution correlation
  • Time-travel debugging integration
  • Runtime call graph augmentation
  • Taint analysis
  • Symbolic execution
  • Automatic exploit path discovery
  • AI-assisted vulnerability triage
  • Graph-based patch analysis
  • Binary diffing
  • Cross-version behavioral comparison

Philosophy

Stop reading binaries one function at a time.

Start exploring them as systems.


Nightingale 3D Engine

screenshot

🧬 Neuroevolution for Procedural 3D Generation
HyperNEAT • CPPNs • Genetic Algorithms • Evolutionary Design • Interactive Mesh Synthesis


Python HyperNEAT CPPN Genetic Algorithm OpenGL Flask Three.js OBJ


🧠 Overview

Nightingale 3D Engine is an experimental evolutionary modeling platform that treats 3D objects as genomes instead of static meshes.

Rather than sculpting vertices manually, objects are generated and evolved through HyperNEAT, Compositional Pattern Producing Networks (CPPNs), and genetic algorithms, allowing entirely new forms to emerge through mutation, crossover, and procedural growth.

Instead of asking:

"How do I model this?"

the engine asks:

"How could this evolve?"

Every object becomes an organism with inheritable traits, enabling procedural evolution instead of traditional mesh editing.


✨ Core Features

🧬 HyperNEAT & CPPN Procedural Generation

Generate geometry from neural networks instead of handcrafted meshes.

Features include:

  • CPPN-based implicit geometry generation
  • HyperNEAT substrate evaluation
  • Continuous procedural shape generation
  • Infinite variation without manually editing vertices
  • Deterministic reproduction from genomes

Every generated model is reproducible from its genome.


🧬 Evolutionary Hybridization

Unlike conventional procedural generators that create one object at a time, Nightingale allows multiple organisms to breed together.

The engine supports:

  • Multi-parent crossover
  • Genome recombination
  • Trait inheritance
  • Regional feature blending
  • Controlled diversity
  • Evolutionary branching

A cactus can inherit characteristics from architecture.

A rocket can inherit characteristics from a tree.

Every generation produces new offspring instead of simple copies.


🧪 Genetic Mutation Engine

Every offspring can be procedurally mutated.

Mutation operators include:

  • geometry perturbation
  • recursive growth
  • symmetry breaking
  • complexity adjustment
  • proportional scaling
  • topology variation
  • regional mutation
  • genome noise injection

The result is an evolutionary search instead of random mesh distortion.


🌳 Evolution Timeline

Every generation is preserved.

The engine records:

  • parent relationships
  • mutation history
  • offspring lineage
  • ancestry influence
  • evolutionary branches

Objects become part of an evolving phylogenetic tree rather than isolated assets.


🧩 Region-Aware Mesh Segmentation

Instead of treating an object as one monolithic mesh, Nightingale automatically partitions geometry into functional regions.

Each region maintains independent metadata:

  • surface area
  • curvature
  • confidence
  • topology
  • symmetry
  • volume contribution

Individual regions can then be:

  • mutated
  • frozen
  • hybridized
  • grafted
  • protected
  • evolved independently

This enables localized evolution rather than mutating an entire object.


🔀 Region Grafting

One of the engine's experimental features is regional transplantation.

Entire anatomical regions can be copied between unrelated models.

Examples include:

  • transplant tree branches onto machinery
  • attach gothic architecture onto organisms
  • merge cactus ribs into sculptures
  • splice biological structures into vehicles

This creates hybrids that traditional mesh interpolation cannot produce.


🎨 CPPN Texture Studio

Geometry and appearance evolve independently.

Procedural texture generation includes:

  • CPPN-generated textures
  • neural color fields
  • procedural gradients
  • psychedelic patterns
  • circuit textures
  • crystalline materials
  • biological pigmentation
  • parameterized frequency
  • warp controls

Textures remain procedural rather than bitmap-based.


🏗 Mutation Studio

Morphological changes can be layered using procedural operators.

Available transformation families include:

🌱 Bioarchitecture

  • Ribbing
  • Tendrils
  • Apertures
  • Skeletonization
  • Vascularization

🤖 Cyber

  • Circuit traces
  • Panelization
  • Mechanical joints
  • Modular plating
  • Vent systems

🏛 Structural

  • Arches
  • Trusses
  • Support beams
  • Lattice reinforcement
  • Load paths

🌸 Art Nouveau

  • Organic vines
  • Floral motifs
  • Spirals
  • Flowing ribs
  • Whiplash curves

🕍 Gothic

  • Flying buttresses
  • Rose windows
  • Rib vaults
  • Spires
  • Tracery

🔷 Geometric

  • Cellular
  • Gyroid
  • Bubble structures
  • Crystallization
  • Faceting
  • Fragmentation
  • Inflation
  • Low-poly conversion
  • Voxelization

Each modifier is evolutionary rather than destructive.


🧠 Genome Inspector

Every organism exposes its underlying genetic state.

Metadata includes:

  • active genome
  • evolutionary generation
  • genome influence
  • ancestry weights
  • complexity
  • symmetry
  • recursion
  • organicity
  • mechanical bias

Rather than editing meshes, users manipulate genomes.


📊 Interactive Evolution Workspace

The interface includes:

  • live OpenGL viewport
  • generation browser
  • mutation grid
  • offspring comparison
  • ancestry graph
  • region explorer
  • feature graph
  • evolutionary timeline
  • procedural texture preview
  • segmentation inspector

Everything updates interactively during evolution.


📦 Import / Export

Supported workflows include:

  • OBJ export
  • PNG rendering
  • project serialization
  • genome persistence
  • evolutionary replay
  • procedural regeneration

Entire evolutionary histories can be saved and revisited.


🚀 Future Research

The long-term vision extends beyond procedural art.

Planned capabilities include:

  • Neural implicit surfaces
  • Signed Distance Function evolution
  • differentiable evolution
  • AI-guided fitness evaluation
  • CLIP-assisted evolutionary search
  • automatic phenotype classification
  • topology-aware crossover
  • procedural rig generation
  • physics-aware fitness functions
  • biomechanical evolution
  • architectural optimization
  • robotics morphology search
  • generative manufacturing pipelines

Ultimately, Nightingale explores what happens when computer graphics, evolutionary computation, artificial life, and procedural modeling converge into a single creative system.


🛠 Technology Stack

  • Python
  • HyperNEAT
  • CPPNs
  • Genetic Algorithms
  • Flask
  • Three.js
  • OpenGL
  • NumPy
  • Procedural Geometry
  • Signed Distance Fields (experimental)
  • Marching Cubes
  • OBJ Pipeline
  • Hugging Face Spaces

Philosophy

Traditional CAD software asks the designer to build every vertex manually.

Nightingale instead defines a set of evolutionary rules and allows entirely new forms to emerge through mutation, inheritance, and natural selection.

It is less a modeling program than an experimental laboratory for evolving digital organisms.


🧬 RNAverse

RNAverse Screenshot

An interactive RNA secondary structure platform for visualization, analysis, mutation, and AI-assisted interpretation.
RNA folding • Structural visualization • Motif discovery • Mutation simulation • Long RNA support

Python Flask ViennaRNA RNAplot RNAplfold TinyLlama D3.js HuggingFace


🧬 Overview

RNAverse is an interactive RNA secondary structure platform built to make RNA folding intuitive, explorable, and biologically meaningful.

Most RNA software either produces beautiful static figures or powerful command-line output—but rarely both. RNAverse combines the predictive power of the ViennaRNA toolkit with an interactive web interface that allows users to explore RNA structures at nucleotide resolution, inspect motifs, simulate mutations, and investigate structural stability in real time.

Whether you're studying microRNAs, viral genomes, tRNAs, long non-coding RNAs, or synthetic constructs, RNAverse provides a visual environment for understanding how sequence becomes structure.


✨ Features

🧬 Dual Folding Engine

RNAverse automatically selects the most appropriate folding algorithm based on sequence length.

For conventional RNA molecules:

  • ViennaRNA RNAfold
  • Minimum Free Energy (MFE) prediction
  • Thermodynamic optimization

For extremely large RNAs:

  • RNAplfold
  • Sliding-window folding
  • Local pairing probabilities
  • Long transcript support

Automatic fallback chain:

RNAplfold
      ↓
RNAfold
      ↓
Internal topology-aware layout engine

allowing everything from small miRNAs to complete viral genomes to be analyzed seamlessly.


🎨 Interactive Secondary Structure Visualization

Rather than rendering RNA as static SVG figures, RNAverse represents every nucleotide as a fully interactive graph.

Features include

  • nucleotide-level precision
  • zoomable graph visualization
  • draggable layouts
  • backbone visualization
  • base-pair visualization
  • publication-quality rendering

The visualization remains responsive even for very large RNA molecules.


🧬 RNAplot Geometry Integration

RNAverse directly integrates RNAplot to generate biologically realistic layouts.

Pipeline:

Sequence
      ↓
Dot-Bracket Structure
      ↓
RNAplot
      ↓
2D Coordinates
      ↓
Interactive Graph

When RNAplot is unavailable, an internal layout engine reconstructs the secondary structure while preserving stem-loop topology.


🧫 Automatic Structural Annotation

RNAverse automatically detects and labels major structural elements.

Including

  • Hairpins
  • Internal loops
  • Bulges
  • Multibranch junctions
  • Stem regions
  • Terminal loops
  • Variable loops
  • Acceptor stems
  • Anticodon stems
  • T-arms
  • D-arms

allowing complex RNAs to be understood at a glance.


🎯 Functional Region Detection

Rather than simply showing paired nucleotides, RNAverse understands biological organization.

Automatically identifies

  • 5' regions
  • 3' regions
  • Stem boundaries
  • Loop boundaries
  • Consecutive stacking interactions
  • Functional domains

Each region receives independent visual styling for rapid interpretation.


🧬 Nested RNA Visualization

RNAverse supports visualization of complex RNA architectures that many traditional viewers cannot display naturally.

Examples include

  • mature miRNA within pre-miRNA
  • overlapping ncRNAs
  • nested transcripts
  • precursor structures
  • multiple RNA annotations

making the platform particularly useful for non-coding RNA research.


🔬 Motif Mining

RNAverse automatically extracts structural motifs from folded RNAs.

Current motif detection includes

  • stem discovery
  • stem length
  • stem sequence extraction
  • hairpin loops
  • internal loops
  • multiloops
  • pseudoknot placeholders
  • pairing statistics

forming the basis for future automated motif discovery pipelines.


🧪 Live Mutation Simulator

One of RNAverse's most powerful capabilities is real-time mutation analysis.

Mutating any nucleotide immediately updates

  • sequence
  • predicted folding
  • Minimum Free Energy
  • pairing interactions
  • secondary structure
  • structural statistics

allowing researchers to rapidly explore sequence-function relationships.

Mutation history records

  • original nucleotide
  • mutated nucleotide
  • position
  • ΔG change
  • structural impact

📊 Structural Statistics

Every analysis automatically generates quantitative metrics including

  • sequence length
  • GC content
  • paired fraction
  • stem count
  • loop count
  • MFE
  • prediction algorithm
  • nucleotide composition

providing immediate structural summaries without external scripts.


🤖 AI-Assisted RNA Interpretation

RNAverse includes an optional AI layer for biological interpretation.

Using a lightweight background-loaded language model, users can ask natural-language questions such as

Is this RNA stable?

Show all hairpin loops.

What happens if I mutate position 42?

Explain this stem-loop.

Why is this region unstable?

The assistant combines folding statistics, motif extraction, and structural metadata to generate context-aware explanations while gracefully falling back to deterministic responses if the model is unavailable.


📤 Export & Interoperability

RNAverse is designed to integrate with downstream RNA analysis workflows.

Supported exports include

  • Dot-Bracket notation
  • FASTA
  • BPSEQ
  • Coordinate layouts
  • Structural statistics
  • Motif summaries

making interoperability straightforward with existing RNA bioinformatics tools.


🚀 Applications

🧬 Non-Coding RNA Research

Explore

  • miRNA
  • pre-miRNA
  • lncRNA
  • snoRNA
  • snRNA
  • ribozymes
  • synthetic RNAs

with interactive visualization.


🦠 Viral Genomics

Long-sequence support enables structural exploration of

  • SARS-CoV-2
  • Zika Virus
  • Dengue
  • Influenza
  • other RNA viruses

without requiring manual segmentation.


💊 Drug Discovery

RNAverse highlights

  • conserved stems
  • exposed loops
  • functional domains
  • structural motifs

that may represent potential targets for

  • antisense oligonucleotides
  • aptamers
  • RNA-binding proteins
  • small-molecule therapeutics

🧪 Synthetic Biology

Rapid mutation simulation makes RNAverse useful for

  • riboswitch engineering
  • aptamer design
  • guide RNA optimization
  • synthetic transcript design
  • educational folding experiments

🎓 Education

RNA secondary structure can be difficult to teach using static diagrams.

RNAverse allows students to

  • mutate sequences
  • observe structural collapse
  • compare folding algorithms
  • identify motifs
  • understand thermodynamic stability

through interactive exploration.


🛠 Technology Stack

  • Python
  • Flask
  • ViennaRNA
  • RNAfold
  • RNAplfold
  • RNAplot
  • D3.js
  • HTML5 Canvas
  • TinyLlama (optional AI)
  • Hugging Face Spaces

🔮 Future Roadmap

RNAverse is intended to become a complete interactive RNA informatics platform.

Planned capabilities include

🧬 Pseudoknot Prediction

Beyond conventional secondary structures.


📈 Base-Pair Probability Heatmaps

Visualize pairing confidence directly from partition function calculations.


🧪 Comparative Folding

Overlay multiple RNA structures to visualize evolutionary conservation.


🌍 RNA Family Database Integration

Direct integration with

  • Rfam
  • miRBase
  • RNAcentral
  • Ensembl

🔬 3D Structure Integration

Bridge secondary structure with

  • PDB
  • AlphaFold RNA
  • Cryo-EM models

for multi-scale visualization.


🤖 AI Structural Reasoning

Future models will answer questions such as

Which mutations preserve this hairpin?

Which loop is most evolutionarily conserved?

Identify likely protein-binding motifs.

Predict structurally tolerant mutations.

Compare this RNA against known ncRNA families.


🎯 Project Vision

RNAverse was built around a simple idea:

RNA should be explored—not merely folded.

Instead of generating another static secondary structure image, RNAverse transforms RNA into an interactive environment where every nucleotide, stem, loop, mutation, and structural relationship becomes immediately accessible. By combining established RNA folding algorithms with modern web visualization and AI-assisted interpretation, the goal is to lower the barrier between computational prediction and biological insight.

Whether you're investigating microRNAs, designing synthetic RNAs, studying viral genomes, or teaching RNA biology, RNAverse aims to make RNA structure as interactive and intuitive as genome browsers have made DNA.


"Every RNA tells a story. RNAverse lets you explore it nucleotide by nucleotide."

🌵 SaguaroScope

SaguaroScope Screenshot

An interactive comparative genomics platform for exploring the Carnegiea gigantea genome.
Genome browser • BLAST annotations • RNA visualization • DuckDB analytics • Hugging Face deployment

Python Flask DuckDB D3.js BLAST HTSlib HuggingFace Genome Browser


🌵 Overview

SaguaroScope is a high-performance interactive genome browser built specifically for the Saguaro cactus (Carnegiea gigantea).

The original genome assembly was publicly released, but no modern web platform existed for exploring it interactively. SaguaroScope was built from scratch to bridge that gap—combining genome visualization, sequence retrieval, BLAST annotation, comparative genomics, and interactive RNA analysis into a single web application.

Rather than functioning as a static annotation browser, SaguaroScope is designed as an exploratory research environment where genomic structure, functional annotation, and comparative biology can all be investigated in real time.


✨ Features

🧬 Interactive Genome Browser

Navigate entire chromosomes/scaffolds with fluid pan-and-zoom rendering.

  • GPU-friendly D3.js visualization
  • Multi-level zoom
  • Whole-genome minimap
  • Smooth navigation across millions of bases
  • Instant jumping to coordinates

🎨 Rich Annotation Tracks

Every genomic feature is rendered as its own visually distinct layer.

Supports:

  • Genes
  • mRNA
  • CDS
  • Exons
  • Pseudogenes
  • miRNA
  • snoRNA
  • snRNA
  • tRNA
  • rRNA
  • Riboswitches
  • Transposable Elements
    • LTR Retrotransposons
    • Non-LTR Retrotransposons
    • TIR Elements
    • Helitrons
    • Unknown repeats

Thousands of annotations remain responsive even while navigating large genomic regions.


🔍 Dual Search Engine

Search by traditional identifiers:

  • Gene IDs
  • Transcript IDs
  • Scaffold coordinates

or biologically meaningful annotation:

  • Protein descriptions
  • Species names
  • Functional keywords

Examples:

Cytochrome P450
Lophophora williamsii
CAM
Heat Shock Protein
Aquaporin

making comparative genomics dramatically easier.


🧪 Whole-Genome BLAST Annotation

Every predicted gene was automatically annotated using large-scale BLAST analysis.

Each feature exposes:

  • Best protein match
  • Species
  • Percent identity
  • Bit score
  • E-value
  • Description

allowing rapid cross-species exploration without manually running BLAST searches.


🔗 Relationship Mapping

SaguaroScope automatically identifies genomic relationships including

  • Sense overlap
  • Antisense overlap
  • Nearby neighbors
  • Intergenic regions

Relationships appear as interactive arcs directly inside the genome browser and remain clickable for rapid navigation.


🧾 Interactive Feature Inspector

Clicking any feature immediately opens a detailed inspection panel containing

  • Coordinates
  • Strand
  • Feature type
  • Length
  • GC%
  • Annotation source
  • Protein description
  • Percent identity
  • E-value
  • Bit score

allowing detailed biological inspection without leaving the browser.


🧬 Live Sequence Viewer

Every annotated feature can be converted directly into nucleotide sequence.

Features include

  • Automatic reverse complement handling
  • Copy sequence
  • FASTA download
  • Instant retrieval from indexed genomes

without loading the full genome into memory.


⚡ Built for Large Genomes

Large plant genomes quickly become difficult to browse using conventional web technologies.

SaguaroScope instead uses

  • DuckDB analytical queries
  • bgzip compressed FASTA
  • HTSlib indexing (.fai / .gzi)
  • Lazy sequence retrieval

allowing gigabase-scale genomes to remain highly responsive.


🧪 Interactive RNA Viewer

Beyond genomic browsing, SaguaroScope includes an experimental RNA exploration interface.

Capabilities include

  • RNA sequence visualization
  • Live mutation
  • Structural exploration
  • Rapid iteration for transcript analysis

designed for future RNA folding and secondary-structure workflows.


🚀 Performance

Designed around analytical rather than transactional databases.

Instead of SQLite or PostgreSQL, SaguaroScope leverages DuckDB for high-performance genomic analytics.

Advantages include

  • columnar execution
  • vectorized SQL
  • extremely fast aggregation
  • low memory overhead
  • excellent performance on large annotation datasets

making complex genomic searches feel nearly instantaneous.


🔬 Future Roadmap

SaguaroScope is intended to evolve beyond a traditional genome browser into a systems biology platform.

Planned additions include

🌞 Circadian Gene Expression

Visual overlays for

  • daytime genes
  • nocturnal genes
  • CAM photosynthesis regulation
  • stomatal opening pathways
  • circadian oscillators

allowing researchers to view genomic organization alongside temporal expression.


🌿 Metabolic Pathway Integration

Overlay metabolic networks directly onto genomic regions.

Examples

  • KEGG pathways
  • Reactome pathways
  • CAM photosynthesis
  • Crassulacean Acid Metabolism enzymes
  • Secondary metabolite synthesis
  • Alkaloid biosynthesis
  • Terpene biosynthesis

🧠 Comparative Evolution

Future comparative datasets include

  • Prickly Pear (Opuntia)
  • Peyote (Lophophora)
  • Dragon Fruit (Selenicereus)
  • Barrel Cactus
  • Agave

allowing evolutionary conservation to be explored directly within the browser.


🧬 Functional Genomics

Future automated annotation layers

  • GO terms
  • Pfam domains
  • InterPro
  • Conserved domains
  • Ortholog clustering
  • Gene family expansion
  • Duplication events

🤖 AI-Assisted Genome Exploration

Long-term plans include integrating LLM-assisted biological reasoning.

Examples

  • "Show drought-related genes."

  • "Find genes associated with CAM metabolism."

  • "Locate all cytochrome P450 enzymes near terpene clusters."

  • "Compare this scaffold against alkaloid-producing cactus species."

transforming the browser into an interactive genomic research assistant.


🛠 Technology Stack

  • Python
  • Flask
  • DuckDB
  • D3.js
  • NCBI BLAST
  • HTSlib
  • bgzip / FAI indexing
  • HTML5 Canvas
  • Hugging Face Spaces

🎯 Project Goals

SaguaroScope was created to make the Carnegiea gigantea genome genuinely explorable.

Rather than treating genome assemblies as static datasets hidden behind flat annotation files, the goal is to provide an environment where researchers, students, and enthusiasts can navigate genomic structure, discover functional relationships, inspect sequence-level detail, and build biological intuition through interactive visualization.

As additional annotations, pathway information, comparative genomes, and expression datasets become available, SaguaroScope is designed to grow into a comprehensive platform for cactus genomics and plant systems biology.

"If the data exists, it should be explorable."


🧬 MIRAGE Mutation Integration & Regulatory Analysis Genome Engine

🧬 MIRAGE

Mutation Integration & Regulatory Analysis Genome Engine (MIRAGE) is an extensible multi-omics systems biology platform designed to reconstruct the complete regulatory landscape surrounding human genes and cancer genomes.

Rather than treating mutations as isolated events, MIRAGE models how genetic variation propagates through interconnected regulatory layers—including transcription factors, enhancers, DNA methylation, chromatin accessibility, non-coding RNAs, gene expression, and biological pathways—to generate mechanistic hypotheses about disease.

The platform transforms thousands of heterogeneous genomic datasets into an integrated regulatory graph capable of revealing upstream regulators, downstream consequences, network bottlenecks, and candidate driver mechanisms across cancer and complex disease.

MIRAGE is available both as a local Anaconda desktop environment for large-scale analyses and as a Google Colab edition for cloud-based execution without requiring local computational resources.

MIRAGE enables researchers to identify multi-layer regulatory vulnerabilities, prioritize candidate driver genes, characterize methylation-sensitive transcription factor networks, quantify regulatory disruption, and generate testable biological hypotheses from heterogeneous multi-omics datasets. Its modular architecture allows new genomic annotations, analytical methods, and machine learning models to be incorporated as the platform evolves.

By integrating diverse genomic data into a unified analytical ecosystem, MIRAGE seeks to bridge the gap between mutation catalogs and mechanistic understanding -providing researchers with a powerful framework for exploring the regulatory architecture of cancer and accelerating the discovery of clinically relevant biomarkers, therapeutic targets, and disease mechanisms.

As a systems biology platform designed to reconstruct the complete regulatory landscape surrounding any gene of interest. Rather than treating genes as isolated coding sequences, MIRAGE models them as dynamic nodes embedded within interconnected layers of transcriptional, epigenetic, post-transcriptional, and genomic regulation.

At its core, MIRAGE integrates diverse biological datasets into a unified regulatory graph. The engine combines experimentally validated and computationally predicted miRNA–mRNA interactions, lncRNA/circRNA ceRNA sponge networks, transcription factor binding sites, candidate cis-Regulatory Elements (cCREs), CpG islands, chromatin accessibility, gene expression, and somatic or germline mutation data. These relationships are synthesized into directed regulatory networks that identify upstream controllers, downstream effects, regulatory bottlenecks, and potential master regulators.

Unlike conventional annotation pipelines that simply report genomic features independently, MIRAGE performs cross-layer integration. For example, it can determine whether a disease-associated mutation falls within a transcription factor binding site located inside a CpG island that regulates a gene already targeted by multiple miRNAs and buffered by competing endogenous RNA (ceRNA) networks. This multi-dimensional context enables researchers to move beyond lists of annotations toward mechanistic hypotheses describing how regulatory disruptions may alter gene function.

The platform also includes analytical modules for ranking regulatory importance, identifying highly connected network hubs, predicting master regulatory switches, mapping tissue-specific expression profiles, detecting regulatory hotspots, and generating publication-quality regulatory graphs. As additional resources such as ClinVar, COSMIC, GWAS Catalog, JASPAR, HOCOMOCO, ENCODE, and GTEx are incorporated, MIRAGE becomes an increasingly comprehensive engine for interpreting both coding and non-coding genomic variation.

🔬 Core Capabilities 🧬 Multi-Omics Integration

Instead of analyzing one dataset at a time, MIRAGE combines multiple regulatory layers into a unified biological model.

Integrated resources include:

Somatic mutations Germline variants DNA methylation RNA expression miRNA expression Copy-number variation Chromatin accessibility Transcription factor binding Candidate cis-regulatory elements (cCREs) CpG islands Clinical metadata Tissue-specific expression

allowing every genomic feature to be interpreted within its surrounding regulatory context.

🧠 Regulatory Graph Reconstruction

Every queried gene becomes the center of an interconnected regulatory network.

MIRAGE reconstructs relationships including

miRNA → mRNA repression miRNA ↔ lncRNA sponge interactions ceRNA competition networks transcription factor regulation enhancer-promoter associations methylation-sensitive promoters chromatin accessibility mutation overlap with regulatory elements

instead of presenting disconnected annotation tables.

🎯 Mutation Context Engine

A mutation is never viewed in isolation.

MIRAGE determines whether variants occur inside

promoters enhancers transcription factor motifs CpG islands DNase hypersensitive regions miRNA target sites conserved regulatory elements

allowing researchers to evaluate functional regulatory disruption instead of genomic position alone.

🧬 Cancer Systems Biology

Built around TCGA Pan-Cancer Atlas datasets, MIRAGE enables large-scale analyses across thousands of patient tumors.

Supported analyses include

mutation frequency copy-number variation methylation RNA expression miRNA expression clinical outcome pathway enrichment regulatory network disruption 🌎 Environmental Carcinogenesis

A major focus of MIRAGE is understanding environmentally induced cancers.

The platform can investigate regulatory consequences associated with

alcohol-derived acetaldehyde tobacco smoke ultraviolet radiation oxidative DNA damage endogenous mutational processes

by connecting mutational signatures to altered transcriptional regulation and pathway activity.

📈 Biological Knowledge Integration

Rather than manually consulting dozens of independent databases, MIRAGE integrates them into a unified analytical framework.

Current resources include

Reference Genomes GRCh38 / hg38 GENCODE v46 UCSC Genome Browser Regulatory Annotation ENCODE cCRE Registry CpG Islands DNase I hypersensitive sites ENCODE TF ChIP-seq clusters Transcription Factors JASPAR CIS-BP HOCOMOCO

including complete PWM libraries and motif databases.

Non-Coding RNA

Integrated support for

miRBase miRTarBase ENCORI (starBase) TargetScan

covering experimentally validated and computationally predicted regulatory interactions.

Cancer Genomics

Pan-Cancer datasets include

TCGA MC3 mutations RNA-Seq DNA methylation SNP6 copy number clinical metadata miRNA expression Clinical & Population Genetics ClinVar GWAS Catalog GTEx Pathway Knowledge

Functional enrichment is supported through

KEGG Reactome Gene Ontology Hallmark Gene Sets (MSigDB) 📊 Systems-Level Analysis

MIRAGE performs higher-order biological analyses including

Regulatory network reconstruction Master regulator prediction Network hub ranking Regulatory hotspot detection Pathway enrichment Expression profiling Tissue specificity Multi-layer annotation scoring Candidate driver prioritization

instead of reporting isolated genomic annotations.

⚡ Modular Architecture

MIRAGE was designed as a modular framework rather than a fixed analysis pipeline.

New resources can be integrated with minimal effort, allowing future support for databases such as

COSMIC Open Targets DepMap AlphaMissense AlphaFold STRING BioGRID Human Protein Atlas

without requiring major architectural changes.

🚀 Platform Editions 💻 Desktop Edition

Designed for local high-performance analysis.

Windows Anaconda Jupyter large local datasets reproducible workflows ☁️ Google Colab Edition

Cloud-native execution requiring no local installation.

Ideal for

education rapid prototyping collaborative research publication notebooks 🧰 Technology Stack Python Pandas NumPy NetworkX Biopython SciPy Matplotlib Jupyter Google Colab Anaconda BEDTools htslib liftOver BLAST+ GTF/BED/VCF parsers 🎯 Long-Term Vision

MIRAGE aims to become a regulatory genome exploration engine that bridges molecular genetics, epigenomics, transcriptomics, and systems biology within a single computational ecosystem.

Rather than producing disconnected annotation tables, MIRAGE reconstructs how genomic variation propagates through regulatory networks to influence cellular behavior—transforming large-scale sequencing datasets into interpretable biological mechanisms, candidate therapeutic targets, and testable scientific hypotheses.

The long-term objective is to provide researchers with a scalable platform for exploring the regulatory architecture of human disease, accelerating biomarker discovery, precision oncology, and mechanistic cancer research.


⚡ R2DI — radare2 Decompiler Installer for Windows

Native Windows provisioning for radare2's r2ghidra and r2dec decompilers.

Automates the installation, compilation, configuration, and verification of a complete radare2 decompilation environment on Windows. r2di.ps1 — PowerShell installer 📜 View r2di.ps1

PowerShell Windows radare2 MSVC r2ghidra r2dec


What is r2di?

r2di (radare2 Decompiler Installer) is a self-contained PowerShell provisioning script designed to make installing r2ghidra and r2dec on native Windows dramatically easier.

The goal is simple:

Turn a clean Windows reverse-engineering workstation into a functional radare2 decompilation environment with one provisioning script.

r2di automatically discovers the local toolchain, builds components where necessary, installs the resulting plugins, configures the Sleigh processor database, fixes Windows-specific configuration issues, and performs an end-to-end verification.

What it installs

  • r2ghidra — Ghidra's Sleigh-based decompiler integration
  • r2dec / pdd — radare2's alternative decompiler
  • Sleigh processor specifications
  • Native Windows plugin DLLs
  • Required environment variables
  • radare2 configuration
  • A Windows-compatible unzip shim for r2pm

What it verifies

r2di doesn't stop after copying files.

It actually tests:

  • MSVC compilation
  • radare2 execution
  • plugin discovery
  • r2ghidra loading
  • Sleigh configuration
  • pdg decompilation
  • r2dec / pdd decompilation
  • clean radare2 configuration loading

Why This Exists

Getting radare2 decompilers working on Windows can involve considerably more work than simply installing radare2 itself.

Common problems include:

  • Missing MSVC build tools
  • Missing Windows SDK components
  • Meson/Ninja configuration issues
  • r2pm expecting Unix-style unzip
  • Sleigh processor database discovery failures
  • Incorrect SLEIGHHOME
  • radare2 configuration not being loaded from the expected location
  • Plugin ABI/version mismatches
  • r2ghidra incorrectly detecting PE architectures
  • gcc being selected as a SLEIGH architecture for Windows PE binaries
  • Environment variables existing in one shell but not another

Typical failures look like:

Cannot find the sleigh home at ./lib/radare2/6.2.0/r2ghidra_sleigh

or:

No languages available

or:

Architecture string does not look like sleigh id: gcc

r2di is designed around these Windows-specific failure modes rather than assuming that a Linux-oriented installation procedure will translate directly to Windows.


Requirements

Operating System

  • Windows 11
  • PowerShell 5.1+

Required

Requirement Purpose
radare2 6.2.0 Reverse-engineering framework
Visual Studio C++ Build Tools MSVC compiler
Windows 11 SDK Native Windows headers/libraries
Git Source checkout
Python 3.11+ Meson runtime
Meson Build system
Ninja Native build backend

Visual Studio / MSVC

The recommended installation method is the Visual Studio Installer with the C++ development workload.

The important components are:

  • MSVC C++ compiler
  • Windows 11 SDK
  • C++ build tools

A minimal command-line installation is also possible.

Minimal Build Tools installation

Visual Studio 2026 Community Edition / Windows 11 SDK / Buildtools

curl curl https://aka.ms/vs/18/Stable/vs_community.exe -o vs_community.exe

.\vs_community.exe `
  --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 `
  --add Microsoft.VisualStudio.Component.Windows11SDK.26100

The Visual Studio Installer is recommended for most users because it handles the complete toolchain installation and registration. Just be sure to check the boxxes It will also look for [+] Visual Studio location ie: C:\Program Files\Microsoft Visual Studio\18\Community if you insist upon using the CLI route for visual studio installation you may need to comment out line 380 - 382


Make sure cl.exe is available

r2dec is compiled natively with Microsoft's C/C++ toolchain.

For example, a Visual Studio Community installation may place the compiler here:

C:\Program Files\Microsoft Visual Studio\18\Community\
VC\Tools\MSVC\14.51.36231\bin\Hostx64\x64

Verify:

cl

If PowerShell cannot find cl.exe, add the appropriate MSVC directory to your environment or launch a Visual Studio Developer PowerShell.

You should see Microsoft's compiler banner rather than:

cl : The term 'cl' is not recognized...

radare2

radare2 must already be installed and available from PATH.

Verify:

r2 -v

For this version of r2di:

radare2 6.2.0

is the expected target.

Also verify:

where.exe r2

A typical installation might be:

C:\radare2\

with:

C:\radare2\bin

available through PATH.


Meson + Ninja

One of the interesting parts of this project is that Node.js/NPM is not required for the r2dec build path used by r2di.

The required build tools can be installed directly with WinGet:

winget install Ninja-build.Ninja mesonbuild.meson

Verify:

meson --version
ninja --version

The provisioning process itself is intentionally lightweight.

On a prepared machine, the complete r2di provisioning process takes roughly 30 seconds, depending on network and disk performance.


Installation

Download: r2di.ps1 — PowerShell installer 📜 View r2di.ps1

Then run:

powershell -ExecutionPolicy Bypass -File .\r2di.ps1

If your execution policy already permits local scripts:

.\r2di.ps1

After installation, open a new PowerShell session so persisted environment variables are refreshed.


What r2di Does

1. Environment Discovery

The script searches for:

  • radare2
  • Visual Studio
  • MSVC
  • Windows SDK
  • Python
  • Meson
  • Ninja

It then configures the native compilation environment.

Relevant compiler variables include:

PATH
INCLUDE
LIB

2. Build-System Preparation

r2di verifies the required build tools and prepares the environment needed to compile native radare2 plugins.

It also creates a small PowerShell-based unzip compatibility layer.

This exists because r2pm can expect Unix-style unzip behavior that is not necessarily available on a normal Windows installation.

The shim translates the relevant arguments into Windows-native Expand-Archive operations.

It supports the flags required by the r2pm workflow, including:

-o
-d
-q

No external Unix environment is required.


r2ghidra Installation

r2di installs r2ghidra through the radare2 package manager:

r2pm -ci r2ghidra

It then locates the resulting plugin and installs:

core_r2ghidra.dll

into the appropriate radare2 plugin directory.


Sleigh Processor Database

One of the most important parts of r2di is handling the Sleigh processor specification database.

r2ghidra depends on Sleigh definitions for architecture and processor descriptions.

On Windows, locating these files can be problematic.

r2di searches the available locations and handles both:

  1. r2pm-managed data
  2. GitHub release data

It also understands the Windows package's flat layout.

Instead of assuming a Ghidra-style hierarchy such as:

Processors/
    x86/
        data/
            languages/

the script recognizes layouts where files such as:

.ldefs
.sla
.pspec
.cspec

are located directly inside the Sleigh directory.


Critical Windows Fix: r2ghidra.sleighhome

A major source of:

No languages available

is r2ghidra not knowing where the Sleigh database lives.

r2di configures:

e r2ghidra.sleighhome=...

and persists the setting into the appropriate radare2 configuration file.

The script also determines the appropriate configuration location using:

r2 -H

It then starts a clean radare2 process and verifies that the configuration is actually loaded.

This is important because successfully writing an environment variable does not necessarily mean a new radare2 process will consume the expected configuration.


Critical Windows Fix: PE Architecture Detection

Another Windows-specific problem is incorrect architecture detection.

For some PE binaries, r2ghidra may attempt to interpret the architecture as:

gcc

which results in:

Architecture string does not look like sleigh id: gcc

r2di explicitly configures the default x86-64 SLEIGH language:

e r2ghidra.lang=x86:LE:64:default

This makes the default configuration appropriate for normal 64-bit Windows PE binaries.


r2dec Build

r2dec is built directly from source.

The repository is cloned recursively:

git clone --recursive ...

Meson is configured using the native MSVC backend.

Ninja then builds the plugin:

core_pdd.dll

The resulting DLL is installed into the radare2 plugin directory.

This means the final r2dec component is a native Windows DLL, rather than requiring a separate compatibility environment.


Verification

r2di performs actual functional testing rather than assuming that successful installation means success.

The verification process includes:

MSVC test

A small C program is compiled with:

cl.exe

radare2 test

r2 -q -c "iI;q"

Plugin test

r2 -q -c "Lc"

The output should contain the installed plugins.

r2ghidra test

r2 -q -c "pdg @ main" test.exe

r2dec test

r2 -q -c "pdd @ main" test.exe

Configuration test

The script launches clean radare2 processes and verifies that:

r2ghidra.sleighhome

and:

r2ghidra.lang

are actually available.


Post-Installation Verification

Open a new PowerShell window and run:

r2 -v

Expected:

radare2 6.2.0

Check loaded plugins:

r2 -q -c "Lc"

Check Sleigh configuration:

r2 -q -c "e r2ghidra.sleighhome"

Check architecture configuration:

r2 -q -c "e r2ghidra.lang"

Expected:

x86:LE:64:default

Then decompile a PE binary:

r2 -q -c "pdg @ main" C:\path\to\binary.exe

And with r2dec:

r2 -q -c "pdd @ main" C:\path\to\binary.exe

Architecture Support

The default configuration targets:

x86-64 PE

32-bit PE

e r2ghidra.lang=x86:LE:32:default

ARM64 PE

e r2ghidra.lang=AARCH64:LE:64:v8A

ARM32

e r2ghidra.lang=ARM:LE:32:v8A

These can be applied for an individual radare2 session or persisted in the radare2 configuration.


Environment Variables

r2di configures and persists the following user-level variables:

Variable Example Purpose
R2_PREFIX C:\radare2 radare2 installation root
R2_USER_PLUGINS %USERPROFILE%\.local\share\radare2\plugins User plugin directory
SLEIGHHOME C:\radare2\lib\radare2\6.2.0\r2ghidra_sleigh Sleigh processor database

Files Created

A typical installation resembles:

C:\Users\%USERNAME%\
│
├── src\
│   ├── r2ghidra\
│   └── r2dec-js\
│
├── bin\
│   ├── unzip.ps1
│   └── unzip.cmd
│
├── .local\
│   └── share\
│       └── radare2\
│           ├── plugins\
│           │   ├── core_r2ghidra.dll
│           │   └── core_pdd.dll
│           │
│           └── r2ghidra_sleigh\
│
└── .radare2rc

The radare2 installation may additionally contain:

C:\radare2\
└── lib\
    └── radare2\
        └── 6.2.0\
            └── r2ghidra_sleigh\

Troubleshooting

radare2.exe was not found

Verify:

where.exe r2

If nothing is returned, add the radare2 bin directory to PATH.

For example:

C:\radare2\bin

Then open a new PowerShell window.


Visual Studio installation was not found

Install Visual Studio or the standalone Build Tools with the C++ workload and Windows SDK.

The script looks for standard Community, Professional, and Enterprise installations.

Verify the compiler:

cl

Meson was not found

Install:

winget install mesonbuild.meson

or:

pip install meson

Ninja was not found

Install:

winget install Ninja-build.Ninja

or:

pip install ninja

r2ghidra loads but pdg fails

Check:

r2 -q -c "e r2ghidra.sleighhome"

Then:

r2 -q -c "e r2ghidra.lang"

The Sleigh path should point to the installed processor database.

If necessary, manually test:

e r2ghidra.sleighhome=C:\radare2\lib\radare2\6.2.0\r2ghidra_sleigh

Architecture string does not look like sleigh id: gcc

Set:

e r2ghidra.lang=x86:LE:64:default

This is one of the Windows PE-specific problems r2di is designed to eliminate automatically.


The unzip Shim

The script intentionally avoids adding a heavyweight Unix compatibility layer simply to satisfy an unzip invocation.

Instead, r2di generates:

unzip.ps1
unzip.cmd

The PowerShell implementation uses Windows-native:

Expand-Archive

The wrapper accepts the flags expected by the r2pm workflow.

This keeps the installation Windows-native while satisfying the assumptions made by the package-management tooling.


Why Not Just Install Node.js?

During development, the original r2pm workflow attempted to pull in Node.js/NPM as part of the r2dec setup.

For this installation path, that dependency was unnecessary.

r2di instead builds the native r2dec component through:

Meson → MSVC → Ninja

This keeps the provisioning footprint smaller and avoids installing an entire JavaScript runtime when the end result we need is:

core_pdd.dll

Project Philosophy

r2di is intentionally focused on one problem:

Make native radare2 decompilation on Windows boring.

No WSL requirement.

No Cygwin requirement.

No Linux VM.

No manual Sleigh hunting.

No hand-copying DLLs.

No guessing which radare2 configuration file is actually being loaded.

No fighting unzip.

No unnecessary Node.js installation.

Instead:

Windows 11
    │
    ├── Visual Studio / MSVC
    ├── Windows SDK
    ├── Python
    ├── Meson
    ├── Ninja
    └── radare2
            │
            ▼
          r2di
            │
       ┌────┴────┐
       ▼         ▼
   r2ghidra    r2dec
       │         │
       ▼         ▼
    Sleigh      pdd
       │         │
       └────┬────┘
            ▼
     Native Windows
     Decompilation

The result is a reproducible Windows reverse-engineering environment capable of using both:

pdg

and:

pdd

directly from radare2.


Credits

Built for reverse engineers who don't want to spend their afternoon fighting their toolchain.

r2di is an automation layer around the excellent open-source work provided by the radare2, r2ghidra, r2dec, Ghidra, Meson, Ninja, and Microsoft Visual C++ projects.

This project does not replace those projects — it makes their Windows installation path significantly less painful.


License

r2di is provided as-is.

radare2, r2ghidra, r2dec, Ghidra, and their respective components are distributed under their own licenses. Consult the upstream projects for their licensing terms.


Contributing

Issues and pull requests are welcome.

Potential future improvements include:

  • Additional Visual Studio versions
  • More flexible radare2 installation detection
  • Automatic architecture detection
  • ARM/ARM64 defaults
  • Improved r2pm integration
  • Additional PE verification tests
  • Support for more Windows configurations

If r2di saves you from manually debugging a Windows decompiler installation, consider opening an issue or contributing a fix.


Source

The complete provisioning script is available here:

r2di.ps1 — PowerShell installer 📜 View r2di.ps1

For users who want to inspect the implementation before executing it, the PowerShell source should be reviewed directly from the repository.


Built for reverse engineers who don't want to fight their toolchain.

🧰 Technical Stack


💻 Languages

Python Go C%23 JavaScript PowerShell Ruby Delphi


🔬 Reverse Engineering & Binary Analysis

radare2 Cutter r2ai angr Ghidra IDA


🐞 Dynamic Analysis & Debugging

WinDbg GDB x64dbg Frida


🛡 Offensive Security

Metasploit Burp Suite BeEF Havoc C2 Maltego


🤖 AI / Data / Research

Hugging Face PyTorch DuckDB SQLite NetworkX D3.js


☁ Platforms

Linux Windows Docker Google Colab Hugging Face Spaces


🧬 Featured Project — RAZORWIRE-LIVE

Live Binary Analysis • Behavioral Signal Scoring • AI-Assisted Forensics
radare2 + Local LLM reasoning inside Google Colab.

Project Repo Open In Colab


Research / AI / Tradecraft

HuggingFace Polyglot%20Models Maldocs


📡 Contact


All tooling used for research, education, and defensive analysis.

Popular repositories Loading

  1. Windows-64x-Caffe-Framework-Deepdream-installer Windows-64x-Caffe-Framework-Deepdream-installer Public

    zero compiling/building required at any point! complete all-in-one deeplearning enviroment. includes precompiled caffe 64x, anaconda2, OS/Vs2013 Dependencies, deepdream/style transfer examples, bv…

    1

  2. Exploits Exploits Public

    Forked from WindowsExploits/Exploits

    Windows Exploits

    PowerShell

  3. metasploit-framework metasploit-framework Public

    Forked from rapid7/metasploit-framework

    Metasploit Framework

    Ruby

  4. lucid lucid Public

    Forked from tensorflow/lucid

    A collection of infrastructure and tools for research in neural network interpretability.

    Jupyter Notebook

  5. Lucid-Neural-Style-Transfer Lucid-Neural-Style-Transfer Public

    Jupyter Notebook

  6. Titu1994-Neural-Style-Transfer Titu1994-Neural-Style-Transfer Public

    very realistic neural style transfer, based off Titu1994's project on github, just ported to colab and made slight compatability changes in the ipynb itself to remove tf issues

    Jupyter Notebook