Oliver Hummel

52 papers A* 1A 3B 8C 3Misc 2Journal 8Unranked 22
YearRankTypeTitle / Venue / Authors
2025 conf
JCDL
Gautam Kishore Shahi, Oliver Hummel
2025 conf
ICEIS (1)
Gautam Kishore Shahi, Oliver Hummel
2025 J jnl
CoRR
Gautam Kishore Shahi, Oliver Hummel
2024 conf
BIR/IR4U2
Gautam Kishore Shahi, Oliver Hummel
2024 J jnl
CoRR
Gautam Kishore Shahi, Oliver Hummel
2018 B conf
SEAA
Oliver Hummel, Holger Eichelberger, Andreas Giloj, Dominik Werle, Klaus Schmid
2017 J jnl
J. Syst. Softw.
Dominic Seiffert, Oliver Hummel
2017 conf
SWAN@ESEC/SIGSOFT FSE
Oliver Hummel, Stefan Burger
2015 B conf
ICSR
Dominic Seiffert, Oliver Hummel
2014 conf
REFSQ Workshops
Carl Friedrich Kreß, Oliver Hummel, Mahmudul Huq
2014 ch.
Recommendation Systems in Software Engineering
Werner Janjic, Oliver Hummel, Colin Atkinson
2013 conf
WETSoM
Oliver Hummel, Stefan Burger
2013 J jnl
IEEE Softw.
Stefan Burger, Oliver Hummel, Matthias Heinisch
2013 A conf
MSR
Werner Janjic, Oliver Hummel, Marcus Schumacher, Colin Atkinson
2013 J jnl
Comput. Inf. Sci.
Oliver Hummel, Alexander Gerhart, Bernhard Schäfer
2013 ch.
Finding Source Code on the Web for Remix and Reuse
Oliver Hummel, Colin Atkinson, Marcus Schumacher
2013 J jnl
Int. J. Comput. Sci. Sport
Oliver Hummel, Ulrich Fehr, Katja Ferger
2013 B conf
ICSR
Dominic Seiffert, Oliver Hummel
2013 ch.
Finding Source Code on the Web for Remix and Reuse
Oliver Hummel, Werner Janjic
2013 conf
KPDAYS
Oliver Hummel, Robert Heinrich
2013 conf
SEUH
Oliver Hummel
2013 C conf
Software Engineering
Stefan Burger, Oliver Hummel
2012 conf
CSMR
Stefan Burger, Oliver Hummel
2012 conf
CBSE
Colin Atkinson, Oliver Hummel
2011 B conf
ICSR
Oliver Hummel, Werner Janjic
2011 A* conf
ICSE
Colin Atkinson, Oliver Hummel, Werner Janjic
2011 conf
COMPSAC Workshops
Stefan Burger, Oliver Hummel
2011 A conf
ICST
Colin Atkinson, Florian Barth, Oliver Hummel, Marcus Schumacher
2010 conf
CBSE
Oliver Hummel, Colin Atkinson
2010 conf
SUITE@ICSE
Oliver Hummel
2010 conf
SUITE@ICSE
Werner Janjic, Oliver Hummel, Colin Atkinson
2010 conf
RSSE@ICSE
Oliver Hummel, Werner Janjic, Colin Atkinson
2010 Misc conf
SAC
Oliver Hummel, Christof Momm, Susan Hickl
2009 conf
ICPP Workshops
Ingrid Duda, Oliver Hummel
2009 B conf
ICSR
Oliver Hummel, Colin Atkinson
2008 B conf
ICSR
Colin Atkinson, Daniel Brenner, Oliver Hummel, Dietmar Stoll
2008 J jnl
IEEE Softw.
Oliver Hummel, Werner Janjic, Colin Atkinson
2008 ch.
Ausgezeichnete Informatikdissertationen
Oliver Hummel
2008
Oliver Hummel
2008 C conf
SEKE
Stefan Seedorf, Oliver Hummel
2007 A conf
ICWS
Colin Atkinson, Philipp Bostan, Oliver Hummel, Dietmar Stoll
2007 C conf
SEKE
Oliver Hummel, Werner Janjic, Colin Atkinson
2007 conf
CoCoME
Colin Atkinson, Philipp Bostan, Daniel Brenner, Giovanni Falcone, Matthias Gutheil, Oliver Hummel, Monika Juhasz, Dietmar Stoll
2007 conf
SOCA
Daniel Brenner, Colin Atkinson, Oliver Hummel, Dietmar Stoll
2007 B conf
XP
Oliver Hummel, Colin Atkinson
2007 J jnl
Wirtschaftsinf.
Oliver Hummel, Colin Atkinson
2006 B conf
ICSR
Oliver Hummel, Colin Atkinson
2005 conf
COMPSAC (2)
Oliver Hummel, Colin Atkinson
2004 Misc conf
IRI
Oliver Hummel, Colin Atkinson
2004 conf
AKA
Colin Atkinson, Matthias Gutheil, Oliver Hummel
2004 conf
RISE
Colin Atkinson, Oliver Hummel
2003 conf
WEDELMUSIC
Stephan Baumann, Oliver Hummel
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