Ido Erev

15 papers A* 1Journal 12Unranked 2
YearRankTypeTitle / Venue / Authors
2022 J jnl
J. Artif. Intell. Res.
Reut Apel, Ido Erev, Roi Reichart, Moshe Tennenholtz
2020 J jnl
CoRR
Reut Apel, Ido Erev, Roi Reichart, Moshe Tennenholtz
2019 J jnl
CoRR
Ori Plonsky, Reut Apel, Eyal Ert, Moshe Tennenholtz, David Bourgin, Joshua C. Peterson, Daniel Reichman, Thomas L. Griffiths, Stuart J. Russell, Evan C. Carter, James F. Cavanagh, Ido Erev
2017 A* conf
AAAI
Ori Plonsky, Ido Erev, Tamir Hazan, Moshe Tennenholtz
2015 J jnl
Int. J. Game Theory
Ido Erev, Sharon Gilat-Yihyie, Davide Marchiori, Doron Sonsino
2014 conf
DMRS
Ido Erev
2011 J jnl
Games
Eyal Ert, Ido Erev, Alvin E. Roth
2010 J jnl
Games
Ido Erev, Eyal Ert, Alvin E. Roth
2010 J jnl
Games
Ido Erev, Eyal Ert, Alvin E. Roth
2007 conf
COSIT
Avi Parush, Shir Ahuvia, Ido Erev
2007 J jnl
Artif. Intell.
Ido Erev, Alvin E. Roth
2006 J jnl
Int. J. Game Theory
Brit Grosskopf, Ido Erev, Eldad Yechiam
2004 J jnl
Hum. Factors
Ido Erev, Greg Barron, Roger W. Remington
2003 J jnl
Hum. Factors
Eldad Yechiam, Ido Erev, Vered Yehene, Daniel Gopher
1990 J jnl
Int. J. Man Mach. Stud.
David V. Budescu, Rami Zwick, Thomas S. Wallsten, Ido Erev
redb/extractors/pe_extractor.py
← Index redb/extractors/pe_extractor.py python
import logging
from abc import ABCMeta, abstractmethod
import inspect

import magic
import pefile
from dotnetfile import DotNetPE

from redb.extractors.extractor import Extractor

logger = logging.getLogger(__name__)


@abstractmethod
class PEExtractor(Extractor, metaclass=ABCMeta):

    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
        )
        self.pe = pe if pe else self._generate_pefile_object()
        self.dotnet = None

    def _generate_pefile_object(self):
        pe = None
        try:
            pe = pefile.PE(self.filepath)
            if not pe:
                raise pefile.PEFormatError("Empty file?")
        except pefile.PEFormatError as e:
            self.log.error(f"Format error {self.hash.sha256} Full error : {e}")
        return pe

    def _generate_dotnetfile_object(self):
        self.log.debug(inspect.currentframe().f_code.co_name)
        dotnet = None
        error = None
        try:
            dotnet = DotNetPE(self.filepath)
            if not dotnet:
                raise Exception("Empty file?")
        except Exception as e:
            self.log.error(
                f"Format error dotnet file {self.hash.sha256} Full error : {e}"
            )
            error = e
        return dotnet, error

    def _check_dotnet(self):
        try:
            file_type = magic.from_buffer(self.binary)
            if ".Net" in file_type:
                return True
            for entry in self.pe.OPTIONAL_HEADER.DATA_DIRECTORY:
                # IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR is typically 14
                if (
                    entry.name == "IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR"
                    and entry.Size > 0
                ):
                    return True
            return False
        except AttributeError as e:
            self.log.error(
                f"AttributeError error dotnet file {self.hash.sha256} Full error : {e}"
            )
            return False

    def _is_signed(self):
        address = self.pe.OPTIONAL_HEADER.DATA_DIRECTORY[
            pefile.DIRECTORY_ENTRY["IMAGE_DIRECTORY_ENTRY_SECURITY"]
        ].VirtualAddress
        if address == 0:
            return False
        return True

    def _has_overlay(self):
        return bool(self.pe.get_overlay())