Xiangbo Lin

42 papers A* 5B 2Journal 25Unranked 10
YearRankTypeTitle / Venue / Authors
2026 J jnl
Eng. Appl. Artif. Intell.
Xue Li, Siyi Yu, Shiyun Xiao, Xiangbo Lin, Zihan Zhao
2026 A* conf
AAAI
Wenbin Bai, Qiyu Chen, Xiangbo Lin, Jw L, Quancheng Li, Hejiang Pan, Yi Sun
2026 J jnl
Biomed. Signal Process. Control.
Yushi Li, Qian Hu, Xiangbo Lin, Xue Li, Yu Dong, Tong Lin
2025 B conf
WCNC
Sike Cheng, Xuanheng Li, Xiangbo Lin, Haichuan Ding, Yi Sun
2025 J jnl
Eng. Appl. Artif. Intell.
Jianwen Li, Yinglan Lv, Xiangbo Lin, Jinglue Hang, Xuanheng Li, Yi Sun
2025 J jnl
CoRR
Wenbin Bai, Qiyu Chen, Xiangbo Lin, Jianwen Li, Quancheng Li, Hejiang Pan, Yi Sun
2025 J jnl
Inf. Sci.
Xuefeng Li, Xiangbo Lin
2025 J jnl
Biomed. Signal Process. Control.
Xue Li, Qian Hu, Xiangbo Lin, Yushi Li, Yu Dong, Tong Lin
2025 J jnl
IEEE Trans. Wirel. Commun.
Sike Cheng, Xiangbo Lin, Xuanheng Li, Jingjing Wang
2025 A* conf
AAAI
Peida Jia, Xuanheng Li, Tianqiang Zhu, Rina Wu, Xiangbo Lin, Yi Sun
2024 conf
Humanoids
Dongying Tian, Xiangbo Lin, Yi Sun
2024 J jnl
CoRR
Dongying Tian, Xiangbo Lin, Yi Sun
2024 J jnl
CoRR
Rina Wu, Tianqiang Zhu, Xiangbo Lin, Yi Sun
2024 J jnl
IEEE Robotics Autom. Lett.
Rina Wu, Tianqiang Zhu, Xiangbo Lin, Yi Sun
2024 J jnl
Eng. Appl. Artif. Intell.
Xuefeng Li, Xiangbo Lin
2024 A* conf
AAAI
Jinglue Hang, Xiangbo Lin, Tianqiang Zhu, Xuanheng Li, Rina Wu, Xiaohong Ma, Yi Sun
2023 J jnl
Image Vis. Comput.
Xiaoyun Chang, Wentao Yi, Xiangbo Lin, Yi Sun
2023 J jnl
IEEE Robotics Autom. Lett.
Yibiao Zhang, Jinglue Hang, Tianqiang Zhu, Xiangbo Lin, Rina Wu, Wanli Peng, Dongying Tian, Yi Sun
2023 J jnl
Signal Image Video Process.
Xuefeng Li, Xiangbo Lin, Yi Sun
2023 J jnl
Neural Comput. Appl.
Xuefeng Li, Xiangbo Lin
2023 J jnl
Pattern Recognit. Lett.
Shuyang Ren, Yibiao Zhang, Jinglue Hang, Xiangbo Lin
2023 J jnl
IEEE Trans. Pattern Anal. Mach. Intell.
Tianqiang Zhu, Rina Wu, Jinglue Hang, Xiangbo Lin, Yi Sun
2022 B conf
ICPR
Song Xu, Xuefeng Li, Xiangbo Lin
2022 J jnl
Pattern Anal. Appl.
Xinru Guo, Song Xu, Xiangbo Lin, Yi Sun, Xiaohong Ma
2022 J jnl
Signal Image Video Process.
Xiangbo Lin, Yibo Li, Yidan Zhou, Yi Sun, Xiaohong Ma
2021 J jnl
Signal Process. Image Commun.
Jian Yang, Xiaohong Ma, Yi Sun, Xiangbo Lin
2021 J jnl
Signal Process. Image Commun.
Xiangbo Lin, Yidan Zhou, Kuo Du, Yi Sun, Xiaohong Ma, Jian Lu
2021 A* conf
ICCV
Tianqiang Zhu, Rina Wu, Xiangbo Lin, Yi Sun
2020 J jnl
Signal Process. Image Commun.
Xuefeng Li, Yidan Zhou, Yi Sun, Xiangbo Lin, Xiaohong Ma
2020 J jnl
Signal Process. Image Commun.
Zheng Chen, Kuo Du, Yi Sun, Xiangbo Lin, Xiaohong Ma
2019 A* conf
CVPR
Kuo Du, Xiangbo Lin, Yi Sun, Xiaohong Ma
2019 conf
ICCV Workshops
Tianqiang Zhu, Yi Sun, Xiaohong Ma, Xiangbo Lin
2018 conf
IPTA
Zhiping Qu, Yuanqi Zhang, Yi Sun, Xiangbo Lin
2018 conf
ECCV (14)
Yidan Zhou, Jian Lu, Kuo Du, Xiangbo Lin, Yi Sun, Xiaohong Ma
2015 conf
iCAST
Xiangbo Lin, Xinwei Yang
2014 conf
ICIC (2)
Xinning Wang, Xiangbo Lin, Zhen Yuan
2013 J jnl
Comput. Math. Methods Medicine
Xiangbo Lin, Su Ruan, Tianshuang Qiu, Dongmei Guo
2012 conf
BMEI
Xiangbo Lin, Su Ruan
2011 conf
iCAST
Wenshuai Yin, Xiangbo Lin, Yi Sun
2011 conf
BMEI
Xiangbo Lin, Tianshuang Qiu
2010 J jnl
Pattern Recognit.
Xiangbo Lin, Tianshuang Qiu, Frédéric Morain-Nicolier, Su Ruan
2008 conf
ISDA (1)
Xiangbo Lin, Tianshuang Qiu, Su Ruan, Frédéric Morain-Nicolier
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