Weihao Chen

30 papers A* 7B 1Misc 1Journal 17Unranked 4
YearRankTypeTitle / Venue / Authors
2026 J jnl
Future Gener. Comput. Syst.
Bohao Yao, Cheng Li, Weihao Chen, Yanrui Chen
2026 J jnl
CoRR
Ruihan Xu, Yuting Gao, Lan Wang, Jianing Li, Weihao Chen, Qingpei Guo, Ming Yang, Shiliang Zhang
2026 A* conf
CHI
Zhi Zheng, Chun Yu, Weihao Chen, Minzheng Song, Binglin Liu, Jianyang Liu, Shiyi Wang, Xutong Wang, Jie Cai, Yuanchun Shi
2025 B conf
IJCNN
Erlei Zhang, Weihao Chen, Jinglei Li, Xiaowei Xu
2025 J jnl
Proc. ACM Hum. Comput. Interact.
Weihao Chen, Chun Yu, Yukun Wang, Meizhu Chen, Yipeng Xu, Yuanchun Shi
2025 J jnl
CoRR
Weihao Chen, Yansong Gao, Boyu Kuang, Jin B. Hong, Yuqing Zhang, Anmin Fu
2025 A* conf
CHI
Weihao Chen, Yuanchun Shi, Yukun Wang, Weinan Shi, Meizhu Chen, Cheng Gao, Yu Mei, Yeshuang Zhu, Jinchao Zhang, Chun Yu
2025 J jnl
CoRR
Yuting Gao, Weihao Chen, Lan Wang, Ruihan Xu, Qingpei Guo
2025 conf
UbiComp Companion
Weihao Chen, Yukun Wang, Meizhu Chen, Zhe He
2024 J jnl
Comput. Biol. Medicine
Dingcheng Tian, Weihao Chen, Dechao Xu, Lisheng Xu, Gang Xu, Yaochen Guo, Yudong Yao
2024 J jnl
Comput. Electron. Agric.
Xiaoxin Li, Mingrui Cai, Xinjie Tan, Chengcheng Yin, Weihao Chen, Zhen Liu, Jiangtao Wen, Yuxing Han
2024 Misc conf
ICASSP
Erlei Zhang, Weihao Chen, Xiaowei Xu, Zhicheng Zhang, Jinglei Li
2024 A* conf
EMNLP
Shangyu Xing, Fei Zhao, Zhen Wu, Tuo An, Weihao Chen, Chunhui Li, Jianbing Zhang, Xinyu Dai
2024 J jnl
CoRR
Shangyu Xing, Fei Zhao, Zhen Wu, Tuo An, Weihao Chen, Chunhui Li, Jianbing Zhang, Xinyu Dai
2024 conf
ICPR (15)
Weihao Chen, Wanru Xu, Zhenjiang Miao
2024 J jnl
Remote. Sens.
Shaoyi Fang, Xinyu Li, Shimao Tian, Weihao Chen, Erlei Zhang
2024 J jnl
Comput. Electron. Agric.
Xinjie Tan, Chengcheng Yin, Xiaoxin Li, Mingrui Cai, Weihao Chen, Zhen Liu, Junshu Wang, Yuxing Han
2023 J jnl
Expert Syst. Appl.
Yee Siang Gan, Weihao Chen, Wei-Chuen Yau, Ziyun Zou, Sze-Teng Liong, Shih-Yuan Wang
2023 J jnl
IEEE Access
Weihao Chen, Yu Wang, Dingcheng Tian, Yudong Yao
2023 J jnl
Comput. Ind. Eng.
Bin He, Weihao Chen, Fangfang Li, Xin Yuan
2023 A* conf
UIST
Weihao Chen, Chun Yu, Huadong Wang, Zheng Wang, Lichen Yang, Yukun Wang, Weinan Shi, Yuanchun Shi
2023 A* conf
UIST
Weihao Chen, Xiaoyu Liu, Jiacheng Zhang, Ian Iong Lam, Zhicheng Huang, Rui Dong, Xinyu Wang, Tianyi Zhang
2023 J jnl
IEEE Access
Xinqiang Chen, Weihao Chen, Lumei Su, Tianyou Li
2022 J jnl
IEEE Trans. Ind. Electron.
Hui Xiao, Huaiqing Zhang, Wei Song, Jiapeng Wang, Weihao Chen, Mingyu Lu
2022 conf
ICARM
Weihao Chen, Ziying Lin, Peng Peng, Wei Dong
2021 J jnl
IEEE Access
Xueliang Zhang, Wenchao Hu, Wei Zhang, Weihao Chen, Hongliang Yue, Bangchun Wen
2020 A* conf
CHI
Zheer Xu, Weihao Chen, Dongyang Zhao, Jiehui Luo, Te-yen Wu, Jun Gong, Sicheng Yin, Jialun Zhai, Xing-Dong Yang
2020 A* conf
SIGIR
Lin Zheng, Naicheng Guo, Weihao Chen, Jin Yu, Dazhi Jiang
2016 J jnl
KSII Trans. Internet Inf. Syst.
Jie Wang, Siguang Hang, Jiwei Liu, Weihao Chen, Gang Hou
2015 conf
ICA3PP (2)
Jie Wang, Weihao Chen, Gang Hou
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