Jakob Heinzle

20 papers Journal 19Unranked 1
YearRankTypeTitle / Venue / Authors
2024 J jnl
Entropy
Alexander J. Hess, Dina von Werder, Olivia K. Harrison, Jakob Heinzle, Klaas Enno Stephan
2023 J jnl
NeuroImage
Herman Galioulline, Stefan Frässle, Samuel J. Harrison, Inês Pereira, Jakob Heinzle, Klaas Enno Stephan
2022 J jnl
NeuroImage
Lars Kasper, Maria Engel, Jakob Heinzle, Matthias Mueller-Schrader, Nadine N. Graedel, Jonas Reber, Thomas Schmid, Christoph Barmet, Bertram J. Wilm, Klaas Enno Stephan, Klaas P. Pruessmann
2021 J jnl
NeuroImage
Samuel J. Harrison, Samuel Bianchi, Jakob Heinzle, Klaas Enno Stephan, Sandra Iglesias, Lars Kasper
2021 J jnl
NeuroImage
Inês Pereira, Stefan Frässle, Jakob Heinzle, Dario Schöbi, Cao-Tri Do, Moritz Gruber, Klaas E. Stephan
2021 J jnl
NeuroImage
Dario Schöbi, Fabienne Homberg, Stefan Frässle, Heike Endepols, Rosalyn J. Moran, Karl J. Friston, Marc Tittgemeyer, Jakob Heinzle, Klaas Enno Stephan
2021 J jnl
NeuroImage
Dario Schöbi, Cao-Tri Do, Stefan Frässle, Marc Tittgemeyer, Jakob Heinzle, Klaas Enno Stephan
2019 J jnl
NeuroImage
Karl J. Friston, Katrin H. Preller, Christoph Mathys, Hayriye Cagnan, Jakob Heinzle, Adeel Razi, Peter Zeidman
2019 J jnl
NeuroImage
Gabor Stefanics, Klaas Enno Stephan, Jakob Heinzle
2019 J jnl
NeuroImage
Klaas E. Stephan, Frederike Petzschner, Lars Kasper, Johanna M. M. Bayer, Katharina V. Wellstein, Gabor Stefanics, Klaas P. Pruessmann, Jakob Heinzle
2017 J jnl
PLoS Comput. Biol.
Eduardo A. Aponte, Dario Schöbi, Klaas E. Stephan, Jakob Heinzle
2016 J jnl
NeuroImage
Jakob Heinzle, Peter J. Koopmans, Hanneke E. M. den Ouden, Sudhir Raman, Klaas Enno Stephan
2014 J jnl
NeuroImage
Fatma Imamoglu, Jakob Heinzle, Adrian Imfeld, John-Dylan Haynes
2011 J jnl
Int. J. Imaging Syst. Technol.
Christian Kalberlah, Yi Chen, Jakob Heinzle, John-Dylan Haynes
2011 J jnl
NeuroImage
Yi Chen, Praneeth Namburi, Lloyd T. Elliott, Jakob Heinzle, Chun Siong Soon, Michael W. L. Chee, John-Dylan Haynes
2011 J jnl
NeuroImage
Thorsten Kahnt, Jakob Heinzle, Soyoung Q. Park, John-Dylan Haynes
2011 J jnl
NeuroImage
Silke Anders, Jakob Heinzle, Nikolaus Weiskopf, Thomas Ethofer, John-Dylan Haynes
2011 J jnl
J. Comput. Neurosci.
Joseph T. Lizier, Jakob Heinzle, Annette Horstmann, John-Dylan Haynes, Mikhail Prokopenko
2011 J jnl
NeuroImage
Jakob Heinzle, Thorsten Kahnt, John-Dylan Haynes
2002 conf
NIPS
Jakob Heinzle, Alan Stocker
redb/extractors/decompiler/bninja/analysis/api.py
← Index redb/extractors/decompiler/bninja/analysis/api.py python
from enum import Enum


class ApiCategory(Enum):
    FILE_OP = [
        "CreateFile",
        "ReadFile",
        "WriteFile",
        "DeleteFile",
        "SetFilePointer",
        "CopyFile",
        "MoveFile",
        "FindFirstFile",
        "FindNextFile",
    ]
    MEMORY_OP = [
        "VirtualAlloc",
        "VirtualFree",
        "HeapAlloc",
        "HeapFree",
        "LocalAlloc",
        "GlobalAlloc",
        "MapViewOfFile",
        "VirtualProtect",
    ]
    NETWORK_OP = [
        "socket",
        "connect",
        "bind",
        "send",
        "recv",
        "WSAStartup",
        "InternetOpen",
        "InternetConnect",
        "HttpOpenRequest",
        "HttpSendRequest",
        "InternetReadFile",
        "URLDownloadToFile",
    ]
    REGISTRY_OP = [
        "RegOpenKey",
        "RegCreateKey",
        "RegSetValue",
        "RegQueryValue",
        "RegDeleteKey",
        "RegEnumKey",
        "RegFlushKey",
    ]
    PROCESS_OP = [
        "CreateProcess",
        "OpenProcess",
        "TerminateProcess",
        "GetProcessId",
        "CreateProcessAsUser",
        "NtCreateProcess",
    ]
    THREAD_OP = [
        "CreateThread",
        "SuspendThread",
        "ResumeThread",
        "CreateRemoteThread",
        "SetThreadContext",
        "GetThreadContext",
    ]
    INJECTION_OP = [
        "WriteProcessMemory",
        "VirtualAllocEx",
        "NtWriteVirtualMemory",
        "SetWindowsHookEx",
        "QueueUserAPC",
        "NtMapViewOfSection",
    ]
    EVASION_OP = [
        "IsDebuggerPresent",
        "CheckRemoteDebuggerPresent",
        "NtQueryInformationProcess",
        "GetTickCount",
        "OutputDebugString",
        "Sleep",
        "QueryPerformanceCounter",
    ]
    SPYING_OP = [
        "GetAsyncKeyState",
        "GetKeyboardState",
        "GetKeyState",
        "GetForegroundWindow",
        "SetWindowsHookEx",
        "BitBlt",
        "GetClipboardData",
    ]
    SYSTEM_OP = [
        "CreateToolhelp32Snapshot",
        "EnumDeviceDrivers",
        "EnumProcesses",
        "GetSystemDirectoryA",
        "GetLogicalDrives",
    ]
    SERVICE_OP = [
        "CreateServiceA",
        "OpenServiceA",
        "StartServiceA",
        "DeleteService",
        "OpenSCManagerA",
        "ControlService",
    ]
    CRYPTO_OP = [
        "CryptAcquireContext",
        "CryptGenKey",
        "CryptEncrypt",
        "CryptDecrypt",
        "CryptCreateHash",
        "CryptHashData",
        "CryptGenRandom",
    ]
    DLL_OP = ["LoadLibrary", "GetProcAddress", "FreeLibrary", "LdrLoadDll"]
    UNKNOWN_OP = []

    @classmethod
    def from_api(cls, api_name):
        for category in cls:
            if any(api_name.startswith(api) for api in category.value):
                return category
        return cls.UNKNOWN_OP