Irum Rauf

28 papers A 4B 2C 2Misc 1Journal 3Unranked 15
YearRankTypeTitle / Venue / Authors
2026 conf
CHI Extended Abstracts
Min Zhang, Arosha K. Bandara, Gordon Rugg, Irum Rauf, Dilrukshi Gamage, Bashar Nuseibeh, Silvia Podestà, Wanling Cai, Sarah Robinson
2025 conf
CHASE@ICSE
Irum Rauf, Helen Sharp, Tamara Lopez, Michel Wermelinger
2025 conf
ResponibleSE@SIGSOFT FSE
Min Zhang, Irum Rauf, Arosha K. Bandara
2024 A conf
Conference on Designing Interactive Systems
Linda Price, Irum Rauf, Daniel Gooch, Dmitri S. Katz, Oliver Pearce, Blaine A. Price
2023 conf
ICSE (SEIS)
Irum Rauf, Marian Petre, Thein Than Tun, Tamara Lopez, Bashar Nuseibeh
2023 J jnl
CoRR
Irum Rauf, Tamara Lopez, Thein Tun, Marian Petre, Bashar Nuseibeh
2022 conf
CHASE@ICSE
Irum Rauf, Tamara Lopez, Helen Sharp, Marian Petre, Thein Tun, Mark Levine, John N. Towse, Dirk van der Linden, Awais Rashid, Bashar Nuseibeh
2022 J jnl
ACM Trans. Softw. Eng. Methodol.
Irum Rauf, Marian Petre, Thein Tun, Tamara Lopez, Paul Lunn, Dirk van der Linden, John N. Towse, Helen Sharp, Mark Levine, Awais Rashid, Bashar Nuseibeh
2020 conf
ICSE (Workshops)
Irum Rauf, Dirk van der Linden, Mark Levine, John N. Towse, Bashar Nuseibeh, Awais Rashid
2019 J jnl
Comput. Sci. Rev.
Irum Rauf, Elena Troubitsyna, Ivan Porres
2018 conf
Bled eConference
Muhammad Usman Warraich, Irum Rauf, Anna Sell
2018 A conf
ICWS
Irum Rauf, Inna Vistbakka, Elena Troubitsyna
2018 A conf
DSN
Elena Troubitsyna, Irum Rauf
2017 conf
IMPEX/FM&MDD
Irum Rauf, Elena Troubitsyna
2017 conf
SERENE
Irum Rauf, Elena Troubitsyna
2016 B conf
VL/HCC
Irum Rauf, Pekka Perala, Jouni Huotari, Ivan Porres
2014 conf
WEBIST (1)
Irum Rauf, Faezeh Siavashi, Dragos Truscan, Ivan Porres
2014 conf
WEBIST (Revised Selected Papers)
Irum Rauf, Faezeh Siavashi, Dragos Truscan, Ivan Porres
2013 C conf
MODELSWARD
Ali Hanzala Khan, Irum Rauf, Ivan Porres
2012 conf
WWV
Irum Rauf, Ali Hanzala Khan, Ivan Porres
2011 ch.
REST: From Research to Practice
Irum Rauf, Ivan Porres
2011 Misc conf
SAC
Ivan Porres, Irum Rauf
2011 B conf
ICWE
Irum Rauf, Ivan Porres
2010 A conf
ICST
Ivan Porres, Irum Rauf
2010 conf
ECSA Companion Volume
Irum Rauf, Anna Ruokonen, Tarja Systä, Ivan Porres
2009 conf
MoDELS (Workshops)
Ivan Porres, Irum Rauf
2009 conf
MoDeVVa@MoDELS
Ivan Porres, Irum Rauf
2008 C conf
SERA
Irum Rauf, Muhammad Zohaib Z. Iqbal, Zafar I. Malik
CLAUDE.md
← Index CLAUDE.md markdown
# CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

## Project Overview

REDB (RationalEdge Samples DB) is a malware analysis framework that extracts features from PE (Portable Executable) files and stores them in ClickHouse database for analysis. It provides a comprehensive set of extractors for analyzing binary samples including PE headers, imports, resources, signatures, and decompiled code.

## Common Commands

### Development Setup
```bash
source venv/bin/activate

# Install dependencies
pip install -r requirements.txt

# Run the main application
python start.py --path /path/to/samples --repo sample_repo --index_prefix redb
```

### Analysis Commands
```bash
# Process a single file
python start.py --path /path/to/binary --repo test --index_prefix redb

# Process from S3 storage
python start.py --s3 --repo malpedia --index_prefix redb

# Process from S3 storage but only a subset of a specific repository
python start.py --s3 --repo "vx-itw" --s3-notes "ITW.0138" --index_prefix redb

# Run only decompilation
python start.py --path /path/to/binary --repo test --index_prefix redb --decompile

# Run specific modules
python start.py --path /path/to/binary --repo test --index_prefix redb --modules "BasicPropertiesExtractor,PEFeaturesExtractor"

# Run as Nomad job (for containerized deployment)
python start.py --nomad-job
```

### Testing
There are no formal unit tests. Testing is done by running the extractors on sample files in the `test_files/` directory.

## Architecture Overview

### Core Components

1. **Ingestor (`redb/ingestor.py`)**: Main orchestrator that handles file processing, multiprocessing, and coordinates extractors
2. **Extractors (`redb/extractors/`)**: Modular analysis components that extract specific features
3. **Database Exporters (`redb/extractors/database_exporters.py`)**: Handle data export to ClickHouse
4. **Settings (`redb/settings/`)**: Configuration management for database connections

### Extractor Architecture

All extractors inherit from the base `Extractor` class and implement:
- `extract()`: Main analysis logic
- `prepare_export_data()`: Format data for database export
- `get_clickhouse_table()`: Return target table name

Available extractors:
- **General**: BasicPropertiesExtractor, HashExtractor, DIEExtractor, CAPAExtractor
- **PE-specific**: PEFeaturesExtractor, PEImportExtractor, PEResourceExtractor, PEOverlayExtractor, PESectionExtractor, PESignatureExtractor, PEDotNetExtractor, PEInconstistencyTestsExtractor, PEExtraFindings
- **ELF**: ELFFeaturesExtractor, ELFSegmentExtractor, ELFSectionExtractor, ELFDependencyExtractor, ELFSymbolExtractor, ELFImportExtractor, ELFExportExtractor, ELFRelocationExtractor, ELFNotesExtractor
- **Mach-O**: MachOFeaturesExtractor, MachOSegmentExtractor, MachOImportExtractor, MachOExportExtractor, MachODylibExtractor, MachOSignatureExtractor
- **APK**: APKFeaturesExtractor, APKManifestExtractor, APKPermissionsExtractor, APKSignatureExtractor, APKDexExtractor, APKResourceExtractor, APKNativeLibExtractor, APKInconsistencyTestsExtractor
- **Decompilation**: DecompileBinja, DecompileAPK

### Database Schema

The project uses a comprehensive ClickHouse schema defined in `redb/redb_schema.yml` with tables for:
- Basic properties (`redb_basic_properties`)
- PE features (`redb_pe_features`, `redb_pe_imports`, `redb_pe_sections`, etc.)
- Decompiled code (`code_binja_decompiled_functions_content`, `code_binja_decompiled_functions_references`)
- CAPA analysis (`redb_capa`, `redb_capa_capabilities`)

Full schema documentation is available in `docs/database_schema.md`.

### Processing Modes

1. **Analysis Mode**: Extracts features using selected modules
2. **Decompile Mode**: Uses Binary Ninja for code decompilation
3. **S3 Mode**: Fetches samples from S3 storage based on catalog queries
4. **Nomad Job Mode**: Processes single jobs using environment variables for containerized deployment

### Configuration

Environment variables are used for configuration:
- Database connection: `CLICKHOUSE_HOST`, `CLICKHOUSE_PORT`, `CLICKHOUSE_USER`, `CLICKHOUSE_PASSWORD`
- S3 storage: `S3_ENDPOINT`, `S3_ACCESS_KEY`, `S3_SECRET_KEY`
- Processing: `BATCH_SIZE`, `REDB_TIMEOUT`, `DECOMPILE_WORKER_TIMEOUT`
- Nomad jobs: `JOB_ID`, `S3_KEY`, `S3_BUCKET`, `WORKER_TYPE`, `CALLBACK_URL`, `ANALYSIS_MODULES`

## Important Implementation Details

### Multiprocessing
- Uses `spawn` method for multiprocessing to avoid memory issues
- Worker processes have timeout handlers to prevent hanging
- Supports both batch processing and streaming processing modes

### Memory Management
- Implements aggressive garbage collection between batches
- Monitors swap usage and restarts worker pools when needed
- Kills stuck processes automatically

### Error Handling
- Comprehensive logging with per-file context
- Graceful handling of corrupted or unsupported files
- Automatic retry logic for database operations

### Security Context
This is a defensive security tool for malware analysis. It processes potentially malicious files in a controlled environment to extract features for detection and analysis purposes.

## Development Notes

- The codebase is optimized for processing large batches of malware samples
- Extractors are designed to be modular and can be run individually or in combination
- Database schema supports both normalized and denormalized views for different query patterns
- S3 integration allows for scalable processing of large malware repositories