Jan C. A. van der Lubbe

34 papers A 1B 2C 5Misc 1Journal 14Unranked 11
YearRankTypeTitle / Venue / Authors
2019 J jnl
Mach. Vis. Appl.
Yuan Zeng, Jan C. A. van der Lubbe, Marco Loog
2016 conf
EuroMed (1)
Yuan Zeng, Jiexiong Tang, Jan C. A. van der Lubbe, Marco Loog
2014 conf
BalkanCryptSec
Jan C. A. van der Lubbe, Merel J. de Boer, Zeki Erkin
2013 A conf
ESORICS
Dmitry Kononchuk, Zekeriya Erkin, Jan C. A. van der Lubbe, Reginald L. Lagendijk
2011 J jnl
Int. J. Medical Informatics
Pedro Peris-Lopez, Agustín Orfila, Aikaterini Mitrokotsa, Jan C. A. van der Lubbe
2011 J jnl
Eng. Appl. Artif. Intell.
Pedro Peris-Lopez, Julio C. Hernandez-Castro, Juan E. Tapiador, Jan C. A. van der Lubbe
2011 J jnl
J. Netw. Comput. Appl.
Pedro Peris-Lopez, Agustín Orfila, Julio C. Hernandez-Castro, Jan C. A. van der Lubbe
2010 conf
ICITST
Pedro Peris-Lopez, Enrique San Millán, Jan C. A. van der Lubbe, Luis Entrena
2010 J jnl
CoRR
Mu'awya Naser, Pedro Peris-Lopez, Mohammd Rafie, Jan C. A. van der Lubbe
2009 conf
VISAPP (2)
Behnaz Pourebrahimi, Jan C. A. van der Lubbe
2009 J jnl
CoRR
Pedro Peris-Lopez, Julio C. Hernandez-Castro, Juan M. Estévez-Tapiador, Jan C. A. van der Lubbe
2009 conf
SEWCN
Pedro Peris-Lopez, Julio C. Hernandez-Castro, Juan M. Estévez-Tapiador, Enrique San Millán, Jan C. A. van der Lubbe
2009 J jnl
CoRR
Pedro Peris-Lopez, Julio César Hernández Castro, Juan M. Estévez-Tapiador, Jan C. A. van der Lubbe
2009 Misc conf
Inscrypt
Pedro Peris-Lopez, Julio C. Hernandez-Castro, Juan E. Tapiador, Tieyan Li, Jan C. A. van der Lubbe
2007 J jnl
Pattern Recognit. Lett.
Eric O. Postma, H. Jaap van den Herik, Jan C. A. van der Lubbe
2007 C conf
SECRYPT
Bartek Gedrojc, Jan C. A. van der Lubbe, Martin van Hensbergen
2006 conf
MRCS
Ana Ioana Deac, Jan C. A. van der Lubbe, Eric Backer
2006 conf
MRCS
M. van Staalduinen, Jan C. A. van der Lubbe, Eric Backer, Pavel Paclík
2006 C conf
SECRYPT
Bartek Gedrojc, Kathy Cartrysse, Jan C. A. van der Lubbe
2005 B conf
ISIT
Kathy Cartrysse, Jan C. A. van der Lubbe
2001 conf
ICHIM (1)
Jan C. A. van der Lubbe, Eugene P. van Someren, Marcel J. T. Reinders
1997 B conf
IDA
G. C. van den Eijkel, Jan C. A. van der Lubbe, Eric Backer
1997 conf
Storage and Retrieval for Image and Video Databases (SPIE)
Gerhard C. Langelaar, Jan C. A. van der Lubbe, Reginald L. Lagendijk
1997 C conf
TIME
Ernst G. P. Bovenkamp, Jan C. A. van der Lubbe
1995 J jnl
Signal Process. Image Commun.
Marcel J. T. Reinders, P. J. L. van Beek, Bülent Sankur, Jan C. A. van der Lubbe
1993 C conf
VCIP
Marcel J. T. Reinders, F. A. Odijk, Jan C. A. van der Lubbe, Jan J. Gerbrands
1993 J jnl
Signal Process. Image Commun.
Bülent Sankur, Ronald A. van Schijndel, Jan C. A. van der Lubbe
1992 conf
ICPR (3)
Marcel J. T. Reinders, Bülent Sankur, Jan C. A. van der Lubbe
1990 conf
AUSCRYPT
Jan C. A. van der Lubbe, Dick E. Boekee
1990 C conf
IPMU
Jan C. A. van der Lubbe, Eric Backer, W. Krijgsman
1987 J jnl
Inf. Sci.
Jan C. A. van der Lubbe, Dick E. Boekee, Ysbrand Boxma
1984 J jnl
Inf. Sci.
Jan C. A. van der Lubbe, Ysbrand Boxma, Dick E. Boekee
1980 J jnl
Inf. Control.
Dick E. Boekee, Jan C. A. van der Lubbe
1979 J jnl
Pattern Recognit.
Dick E. Boekee, Jan C. A. van der Lubbe
tests/scripts/test_macho_extractors_local.py
← Index tests/scripts/test_macho_extractors_local.py python
#!/usr/bin/env python3
"""
Local MachO extractors test - test actual extractors without server connections
"""

import sys
import os
import logging
import hashlib
from datetime import datetime, timezone
from typing import Dict, Any, Optional
from unittest.mock import Mock, patch

# Add the redb directory to the path so we can import the extractors
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'redb'))

# Mock settings to avoid database connections
with patch.dict('os.environ', {'REDB_ENV': 'test'}):
    # Import the actual extractors
    from redb.extractors.macho_extractors.macho_features import MachOFeaturesExtractor
    from redb.extractors.macho_extractors.macho_segments import MachOSegmentExtractor
    from redb.extractors.macho_extractors.macho_imports import MachOImportExtractor
    from redb.extractors.macho_extractors.macho_exports import MachOExportExtractor
    from redb.extractors.macho_extractors.macho_dylibs import MachODylibExtractor
    from redb.extractors.macho_extractors.macho_signature import MachOSignatureExtractor
    from redb.extractors.macho_extractors.macho_universal import MachOUniversalExtractor

def setup_logging():
    """Setup basic logging configuration."""
    logging.basicConfig(
        level=logging.INFO,
        format='%(asctime)s - %(levelname)s - %(message)s'
    )
    return logging.getLogger(__name__)

class MockLogger:
    """Mock logger for testing without RedB dependencies."""
    def __init__(self):
        self.logger = logging.getLogger(__name__)
    
    def debug(self, msg):
        self.logger.debug(msg)
    
    def info(self, msg):
        self.logger.info(msg)
    
    def warning(self, msg):
        self.logger.warning(msg)
    
    def error(self, msg):
        self.logger.error(msg)

class MockExporter:
    """Mock exporter that does nothing."""
    def export(self, data):
        pass

def create_mock_extractor(extractor_class, filepath):
    """Create an extractor instance with mocked dependencies."""
    log = MockLogger()
    
    # Mock the exporters to avoid database connections
    mock_exporters = [MockExporter()]
    
    # Create the extractor with mocked dependencies
    extractor = extractor_class(
        filepath=filepath,
        log=log,
        exporters=mock_exporters,
        index_prefix="test",
        elastic_index="test_macho",
        known_benign=False,
        known_malicious=False
    )
    
    return extractor

def test_extractor(extractor_class, filepath, extractor_name):
    """Test a specific extractor."""
    log = setup_logging()
    log.info(f"Testing {extractor_name}...")
    
    try:
        # Create the extractor with mocked dependencies
        extractor = create_mock_extractor(extractor_class, filepath)
        
        if not extractor.macho:
            log.error(f"{extractor_name}: No MachO object created")
            return False

        # Test the actual extract method
        result = extractor.extract()
        
        if result:
            log.info(f"{extractor_name}: Successfully extracted data")
            print(f"\n{'='*60}")
            print(f"=== {extractor_name.upper()} RESULTS ===")
            print(f"{'='*60}")
            
            if isinstance(result, list):
                print(f"📊 Extracted {len(result)} items")
                print()
                for i, item in enumerate(result):
                    print(f"📦 Item {i+1}:")
                    print(f"   {'─'*40}")
                    # Handle dataclass objects in lists
                    if hasattr(item, '__dataclass_fields__'):
                        from dataclasses import asdict
                        item_dict = asdict(item)
                        for key, value in item_dict.items():
                            if isinstance(value, (list, dict)):
                                if isinstance(value, list):
                                    print(f"   🔹 {key}: List with {len(value)} items")
                                    print(f"      {value}")
                                elif isinstance(value, dict):
                                    print(f"   🔹 {key}: Dict with {len(value)} keys")
                                    for k, v in value.items():
                                        print(f"      {k}: {v}")
                            else:
                                print(f"   🔹 {key}: {value}")
                    else:
                        # Regular dict
                        for key, value in item.items():
                            if isinstance(value, (list, dict)):
                                if isinstance(value, list):
                                    print(f"   🔹 {key}: List with {len(value)} items")
                                    print(f"      {value}")
                                elif isinstance(value, dict):
                                    print(f"   🔹 {key}: Dict with {len(value)} keys")
                                    for k, v in value.items():
                                        print(f"      {k}: {v}")
                            else:
                                print(f"   🔹 {key}: {value}")
                    print()
            else:
                print("📊 Extracted data:")
                print()
                # Handle dataclass objects
                if hasattr(result, '__dataclass_fields__'):
                    # It's a dataclass, use dataclasses.asdict
                    from dataclasses import asdict
                    result_dict = asdict(result)
                    for key, value in result_dict.items():
                        if isinstance(value, (list, dict)):
                            if isinstance(value, list):
                                print(f"🔹 {key}: List with {len(value)} items")
                                print(f"   {value}")
                            elif isinstance(value, dict):
                                print(f"🔹 {key}: Dict with {len(value)} keys")
                                for k, v in value.items():
                                    print(f"   {k}: {v}")
                        else:
                            print(f"🔹 {key}: {value}")
                        print()
                else:
                    # It's a regular dict
                    for key, value in result.items():
                        if isinstance(value, (list, dict)):
                            if isinstance(value, list):
                                print(f"🔹 {key}: List with {len(value)} items")
                                print(f"   {value}")
                            elif isinstance(value, dict):
                                print(f"🔹 {key}: Dict with {len(value)} keys")
                                for k, v in value.items():
                                    print(f"   {k}: {v}")
                        else:
                            print(f"🔹 {key}: {value}")
                        print()
        else:
            log.warning(f"{extractor_name}: No data extracted")
            print(f"\n❌ {extractor_name}: No data extracted")
        
        return True
        
    except Exception as e:
        log.error(f"{extractor_name}: Error during extraction: {e}")
        import traceback
        traceback.print_exc()
        return False

def main():
    """Main function."""
    if len(sys.argv) < 2:
        print("Usage: python test_macho_extractors_local.py <macho_file> [extractor_name]")
        print("\nAvailable extractors:")
        print("  features    - Basic MachO header and metadata")
        print("  segments    - Segment information and analysis")
        print("  imports     - Imported functions and libraries")
        print("  exports     - Exported symbols")
        print("  dylibs      - Dynamic library dependencies")
        print("  signature   - Code signing information")
        print("  universal   - FAT/Universal binary information")
        print("  all         - Test all extractors")
        sys.exit(1)
    
    filepath = sys.argv[1]
    extractor_name = sys.argv[2] if len(sys.argv) > 2 else "all"
    
    if not os.path.exists(filepath):
        print(f"File not found: {filepath}")
        sys.exit(1)
    
    # Define extractors
    extractors = {
        'features': (MachOFeaturesExtractor, "MachO Features"),
        'segments': (MachOSegmentExtractor, "MachO Segments"),
        'imports': (MachOImportExtractor, "MachO Imports"),
        'exports': (MachOExportExtractor, "MachO Exports"),
        'dylibs': (MachODylibExtractor, "MachO Dylibs"),
        'signature': (MachOSignatureExtractor, "MachO Code Signature"),
        'universal': (MachOUniversalExtractor, "MachO Universal/FAT"),
    }
    
    if extractor_name == "all":
        print(f"Testing all extractors with file: {filepath}")
        success_count = 0
        for name, (extractor_class, display_name) in extractors.items():
            if test_extractor(extractor_class, filepath, display_name):
                success_count += 1
            print("-" * 50)
        
        print(f"\n✅ {success_count}/{len(extractors)} extractors completed successfully")
        
    elif extractor_name in extractors:
        extractor_class, display_name = extractors[extractor_name]
        success = test_extractor(extractor_class, filepath, display_name)
        
        if success:
            print(f"\n✅ {display_name} testing completed successfully")
        else:
            print(f"\n❌ {display_name} testing failed")
            sys.exit(1)
    else:
        print(f"Unknown extractor: {extractor_name}")
        print("Available extractors:", ", ".join(extractors.keys()) + ", all")
        sys.exit(1)

if __name__ == "__main__":
    main()