Ingrid Fischer

26 papers A 1B 4Journal 4Unranked 12
YearRankTypeTitle / Venue / Authors
2012 J jnl
ReCALL
Steven L. Thorne, Ingrid Fischer, Xiaofei Lu
2009 ch.
Encyclopedia of Data Warehousing and Mining
Ingrid Fischer
2009 ch.
Encyclopedia of Data Warehousing and Mining
Ingrid Fischer
2008 conf
IADIS European Conf. Data Mining
Tobias Werth, Alexander Dreweke, Marc Wörlein, Ingrid Fischer, Michael Philippsen
2007 A conf
CGO
Alexander Dreweke, Marc Wörlein, Ingrid Fischer, Dominic Schell, Thorsten Meinl, Michael Philippsen
2006 ed.
CompLife
Michael R. Berthold, Robert C. Glen, Ingrid Fischer
2006 B conf
SMC
Thorsten Meinl, Marc Wörlein, Ingrid Fischer, Michael Philippsen
2006 B conf
ICGT
Martin Riedl, Sebastian Seifert, Ingrid Fischer
2006 J jnl
Electron. Commun. Eur. Assoc. Softw. Sci. Technol.
Thorsten Meinl, Marc Wörlein, Olga Urzova, Ingrid Fischer, Michael Philippsen
2006 J jnl
Acta Cybern.
Csongor Bartha, Tilmann Spiegelhauer, Ricarda Dormeyer, Ingrid Fischer
2005 conf
PKDD
Marc Wörlein, Thorsten Meinl, Ingrid Fischer, Michael Philippsen
2005 ed.
CompLife
Michael R. Berthold, Robert C. Glen, Kay Diederichs, Oliver Kohlbacher, Ingrid Fischer
2005 conf
LWA
Thorsten Meinl, Ingrid Fischer, Michael Philippsen
2004 conf
SMC (5)
Ingrid Fischer, Thorsten Meinl
2004 B conf
ICGT
Sebastian Seifert, Ingrid Fischer
2003 conf
AGTIVE
Ingrid Fischer
2000 conf
KONVENS
Nancy Chang, Ingrid Fischer
1999 conf
AGTIVE
Ingrid Fischer, Manuel Koch, Michael R. Berthold
1999 conf
FBT
Ingrid Fischer, Gabriele Taentzer
1998 B conf
LREC
Ricarda Dormeyer, Ingrid Fischer
1998
Ingrid Fischer
1998 J jnl
Datenbank Rundbr.
Manuel Koch, Ingrid Fischer, Victor Volle
1998 conf
TAGT
Ingrid Fischer, Manuel Koch, Gabriele Taentzer
1997 conf
ICNN
Michael R. Berthold, Ingrid Fischer
1996 conf
KONVENS
Ingrid Fischer, Martina Keil
1995 conf
IWPT
Ingrid Fischer, Bernd Geistert, Günther Görz
redb/extractors/decompiler/bninja/analysis/medium_level.py
← Index redb/extractors/decompiler/bninja/analysis/medium_level.py python
import time

from binaryninja import (
    MediumLevelILOperation as MLIL_OP,
)

try:
    from ..function_type import FunctionTypeAnalysis
    from ..similarity.minhasher import MinHasher, TokenKind
    from ..utils.hashes import calculate_sha256, calculate_tlsh
    from .medium_level_normalization import MediumLevelNormalization
except ImportError:
    from redb.extractors.decompiler.bninja.analysis.medium_level_normalization import MediumLevelNormalization
    from redb.extractors.decompiler.bninja.similarity.minhasher import MinHasher
    from redb.extractors.decompiler.bninja.function_type import FunctionTypeAnalysis
    from redb.extractors.decompiler.bninja.utils.hashes import calculate_sha256, calculate_tlsh


_MLIL_CALL_OPS = (
    MLIL_OP.MLIL_CALL,
    MLIL_OP.MLIL_CALL_SSA,
    MLIL_OP.MLIL_CALL_UNTYPED,
    MLIL_OP.MLIL_CALL_UNTYPED_SSA,
    MLIL_OP.MLIL_TAILCALL,
    MLIL_OP.MLIL_TAILCALL_SSA,
    MLIL_OP.MLIL_TAILCALL_UNTYPED,
    MLIL_OP.MLIL_TAILCALL_UNTYPED_SSA,
)

_MLIL_CONTROL_FLOW_OPS = (
    MLIL_OP.MLIL_IF,
    MLIL_OP.MLIL_GOTO,
    MLIL_OP.MLIL_JUMP,
    MLIL_OP.MLIL_JUMP_TO,
    MLIL_OP.MLIL_RET,
    MLIL_OP.MLIL_RET_HINT,
    MLIL_OP.MLIL_NORET,
) + _MLIL_CALL_OPS


class MediumLevelAnalysis:
    def __init__(self, function, bv, logger):
        self.function = function
        self.name = function.name
        self.start = function.start
        self.mlil_func = function.mlil
        self.bv = bv
        self.logger = logger
        self.errors = []

    def log_error(self, message, function_name, address, exception=None, error_location="unknown"):
        error_msg = f"Error in function {function_name} at {address}: {message}"
        if exception:
            error_msg += f" - {str(exception)}"
        self.logger.error(error_msg)

        error = {
            "function_name": function_name,
            "function_address": str(address),
            "error_location": error_location,
            "error_message": message,
            "error_details": str(exception) if exception else "",
            "error_type": type(exception).__name__ if exception else "Unknown",
            "timestamp": int(time.time() * 1000),
        }
        self.errors.append(error)

    def _collect_mlil_skeleton_and_typed(self):
        mlil = self.mlil_func
        if not mlil:
            return [], [], [], []

        start = self.start
        norm = MediumLevelNormalization()

        skeleton = []
        skeleton_with_addr = []
        typed = []
        typed_with_addr = []

        for il in mlil.instructions:
            skel_norm = norm.normalize_instruction_all_levels(il)
            typed_norm = norm.normalize_instr_with_operands(il)

            skeleton.append(skel_norm)
            typed.append(typed_norm)

            offset = il.address - start
            if offset < 0:
                offset = 0

            skeleton_with_addr.append((offset, skel_norm))
            typed_with_addr.append((offset, typed_norm))

        return skeleton, skeleton_with_addr, typed, typed_with_addr

    def analyze(self):
        (
            instr_skeleton,
            body_mlil_skeleton_vector,
            instr_typed,
            body_mlil_typed_vector,
        ) = self._collect_mlil_skeleton_and_typed()

        instr_skeleton_str = str(instr_skeleton)
        sha256_skeleton = calculate_sha256(instr_skeleton_str)
        tlsh_skeleton = calculate_tlsh(instr_skeleton_str)

        instr_typed_str = str(instr_typed)
        sha256_typed = calculate_sha256(instr_typed_str)
        tlsh_typed = calculate_tlsh(instr_typed_str)

        seed = 0xdeadbeef
        minhash_mlil_skeleton = MinHasher(seed, self.mlil_func, TokenKind.MLIL).calculateMinHash()
        minhash_mlil_typed = MinHasher(seed, self.mlil_func, TokenKind.TYPED_MLIL).calculateMinHash()

        medium_level_json = {
            "function_address": self.start,
            "body_mlil_skeleton_vector": body_mlil_skeleton_vector,
            "sha256_mlil_skeleton": sha256_skeleton,
            "tlsh_mlil_skeleton": tlsh_skeleton,
            "minhash_mlil_skeleton": minhash_mlil_skeleton,
            "body_mlil_typed_vector": body_mlil_typed_vector,
            "sha256_mlil_typed": sha256_typed,
            "tlsh_mlil_typed": tlsh_typed,
            "minhash_mlil_typed": minhash_mlil_typed,
        }

        return medium_level_json, self.errors