M. Sabbir Salek

23 papers Journal 23
YearRankTypeTitle / Venue / Authors
2026 J jnl
CoRR
Abdullah Al Mamun, Akid Abrar, Mizanur Rahman, M. Sabbir Salek, Mashrur Chowdhury
2026 J jnl
Cybersecur.
Sefatun-Noor Puspa, Abyad Enan, Reek Majumder, M. Sabbir Salek, Gurcan Comert, Mashrur Chowdhury
2025 J jnl
CoRR
Araf Rahman, M. Sabbir Salek, Mashrur Chowdhury, Wayne A. Sarasua
2025 J jnl
IEEE Access
M. Sabbir Salek, Mashrur Chowdhury, Muhaimin Bin Munir, Yuchen Cai, Mohammad Imtiaz Hasan, Jean Michel Tine, Latifur Khan, Mizanur Rahman
2025 J jnl
CoRR
M. Sabbir Salek, Mashrur Chowdhury, Muhaimin Bin Munir, Yuchen Cai, Mohammad Imtiaz Hasan, Jean Michel Tine, Latifur Khan, Mizanur Rahman
2025 J jnl
CoRR
Ostonya Thomas, M. Sabbir Salek, Jean Michel Tine, Mizanur Rahman, Trayce Hockstad, Mashrur Chowdhury
2025 J jnl
CoRR
Kaiyuan Zhang, M. Sabbir Salek, Antian Wang, Mizanur Rahman, Mashrur Chowdhury, Yingjie Lao
2025 J jnl
CoRR
Jean Michel Tine, Mohammed Aldeen, Abyad Enan, M. Sabbir Salek, Long Cheng, Mashrur Chowdhury
2024 J jnl
CoRR
M. Sabbir Salek, Shaozhi Li, Mashrur Chowdhury
2024 J jnl
CoRR
M. Sabbir Salek, Abdullah Al Mamun, Mashrur Chowdhury
2024 J jnl
CoRR
Sefatun-Noor Puspa, Abyad Enan, Reek Majumdar, M. Sabbir Salek, Gurcan Comert, Mashrur Chowdhury
2024 J jnl
CoRR
M. Sabbir Salek, Mugdha Basu Thakur, Pardha Sai Krishna Ala, Mashrur Chowdhury, Matthias J. Schmid, Pamela Murray-Tuite, Sakib Mahmud Khan, Venkat Krovi
2024 J jnl
CoRR
Abdullah Al Mamun, Akid Abrar, Mizanur Rahman, M. Sabbir Salek, Mashrur Chowdhury
2024 J jnl
CoRR
Reek Majumder, Gurcan Comert, David W. Werth, Adrian Gale, Mashrur Chowdhury, M. Sabbir Salek
2024 J jnl
CoRR
Hsien-Wen Deng, M. Sabbir Salek, Mizanur Rahman, Mashrur Chowdhury, Mitch Shue, Amy W. Apon
2024 J jnl
CoRR
Abyad Enan, M. Sabbir Salek, Mashrur Chowdhury, Gurcan Comert, Sakib Mahmud Khan, Reek Majumder
2023 J jnl
IEEE Access
M. Sabbir Salek, Pronab Kumar Biswas, Jacquan Pollard, Jordyn Hales, Zecheng Shen, Vivek Dixit, Mashrur Chowdhury, Sakib Mahmud Khan, Yao Wang
2023 J jnl
CoRR
Sakib Mahmud Khan, M. Sabbir Salek, Vareva Harris, Gurcan Comert, Eric A. Morris, Mashrur Chowdhury
2023 J jnl
CoRR
Reek Majumder, Jacquan Pollard, M. Sabbir Salek, David W. Werth, Gurcan Comert, Adrian Gale, Sakib Mahmud Khan, Samuel Darko, Mashrur Chowdhury
2022 J jnl
IEEE Internet Things J.
M. Sabbir Salek, Sakib Mahmud Khan, Mizanur Rahman, Hsien-Wen Deng, Mhafuzul Islam, Zadid Khan, Mashrur Chowdhury, Mitch Shue
2021 J jnl
IEEE Intell. Transp. Syst. Mag.
Hsien-Wen Deng, Mizanur Rahman, Mashrur Chowdhury, M. Sabbir Salek, Mitch Shue
2021 J jnl
CoRR
M. Sabbir Salek, Mashrur Chowdhury, Mizanur Rahman, Kakan C. Dey, Md Rafiul Islam
2020 J jnl
CoRR
Hsien-Wen Deng, Mizanur Rahman, Mashrur Chowdhury, M. Sabbir Salek, Mitch Shue
redb/extractors/pe_extractors/pe_imports.py
← Index redb/extractors/pe_extractors/pe_imports.py python
import inspect
from typing import Any, List, Tuple
from datetime import datetime, timezone

from redb.extractors.enum import Tag
from redb.extractors.pe_extractor import PEExtractor
from redb.models.dataclasses import PEImport


class PEImportExtractor(PEExtractor):

    def __init__(
        self,
        filepath,
        log,
        exporters=None,
        index_prefix=None,
        elastic_index=None,
        known_benign=False,
        known_malicious=False,
        pe=None,
    ):
        super().__init__(
            filepath,
            log,
            exporters,
            index_prefix,
            elastic_index,
            known_benign,
            known_malicious,
            pe,
        )
        self.elastic_index = self.index_prefix + "-pe_imports"
        self.log.debug(inspect.currentframe().f_code.co_name)

    def tag(self):
        return Tag.PE_IMPORT.value

    def _extract_imports(self):
        self.log.debug(inspect.currentframe().f_code.co_name)

        imports_symbols = []
        imports_lib = []
        imports_total = 0
        # pe_import = None
        try:
            directory_entry_import = getattr(self.pe, "DIRECTORY_ENTRY_IMPORT", [])
            imports_total = len(directory_entry_import)
            for entry in directory_entry_import:
                symbols = []
                tmp_import = {}
                libname = entry.dll.decode() if entry.dll else ""
                imports_lib.append(libname)
                # replace . with _ to avoid issues with elastic
                # entryname = entryname.replace(".", "_")
                for symbol in entry.imports:
                    if symbol.name:
                        symbols.append(symbol.name.decode())
                # imports_symbols[entryname] = symbols
                tmp_import[libname] = symbols
                imports_symbols.append(tmp_import)
            return PEImport(
                pe_imports_total=imports_total,
                pe_import_libraryName=imports_lib if imports_lib else None,
                pe_import_functions=imports_symbols if imports_symbols else None,
            )
        except Exception as e:
            self.log.error(f"Extract imports error {self.hash.sha256} Exception: {e}")
        return pe_import

    def extract(self):
        try:
            self.log.debug(inspect.currentframe().f_code.co_name)
            return self._extract_imports()
        except Exception as e:
            self.log.error(f"Extract imports error {self.hash.sha256} Exception: {e}")
            return None

    def prepare_export_data(self, exporter_type: str) -> Any:
        if exporter_type == "ElasticsearchExporter":
            return self.extract()
        elif exporter_type == "ClickHouseExporter":
            imports = self.extract()
            if (
                imports is None
                or imports.pe_imports_total == 0
                or (
                    imports.pe_import_libraryName is None
                    and imports.pe_import_functions is None
                )
            ):
                return None

            # Flatten the data - one row per function import
            data = []
            current_time = datetime.now(timezone.utc)

            for lib_funcs in imports.pe_import_functions:
                for lib, funcs in lib_funcs.items():
                    for func in funcs:
                        data.append(
                            [
                                self.sha256,  # sha256
                                self.md5,  # md5
                                self.sha1,  # sha1
                                lib,  # library_name
                                func,  # function_name
                                current_time,  # analysis_date
                            ]
                        )

            column_names = [
                "sha256",
                "md5",
                "sha1",
                "library_name",
                "function_name",
                "analysis_date",
            ]

            column_type_names = [
                "FixedString(64)",
                "FixedString(32)",
                "FixedString(40)",
                "LowCardinality(Nullable(String))",
                "LowCardinality(Nullable(String))",
                "DateTime64(3, 'UTC')",
            ]

            if not data:
                return None

            return (data, column_names, column_type_names)

    def get_clickhouse_table(self) -> str:
        return "redb_pe_imports"