Oh-Seok Kwon

12 papers C 3Journal 6Unranked 3
YearRankTypeTitle / Venue / Authors
2026 J jnl
BMC Medical Informatics Decis. Mak.
Changho Han, Seng Chan You, Hyung-Chul Lee, Jin Young Park, Hong-Seok Lim, ChulHyoung Park, Hui-Nam Pak, Oh-Seok Kwon, Songsoo Kim, Jung-Sun Kim, Dukyong Yoon
2024 J jnl
npj Digit. Medicine
Ze Jin, Taehyun Hwang, Daehoon Kim, Byounghyun Lim, Oh-Seok Kwon, SangBin Kim, Moon-Hyun Kim, Je-Wook Park, Hee Tae Yu, Tae-Hoon Kim, Jae-Sun Uhm, Boyoung Joung, Moon-Hyoung Lee, Hui-Nam Pak
2024 J jnl
npj Digit. Medicine
Hanjin Park, Oh-Seok Kwon, Jaemin Shim, Daehoon Kim, Je-Wook Park, Yun-Gi Kim, Hee Tae Yu, Tae-Hoon Kim, Jae-Sun Uhm, Jong-Il Choi, Boyoung Joung, Moon-Hyoung Lee, Hui-Nam Pak
2024 J jnl
npj Digit. Medicine
Taehyun Hwang, Byounghyun Lim, Oh-Seok Kwon, Moon-Hyun Kim, Daehoon Kim, Je-Wook Park, Hee Tae Yu, Tae-Hoon Kim, Jae-Sun Uhm, Boyoung Joung, Moon-Hyoung Lee, Chun Hwang, Hui-Nam Pak
2023 J jnl
IEEE Access
Oh-Seok Kwon, Jisu Lee, Je-Wook Park, So-Hyun Yang, Inseok Hwang, Hee Tae Yu, Hangsik Shin, Hui-Nam Pak
2022 J jnl
IEEE Access
Oh-Seok Kwon, Jisu Lee, Je-Wook Park, So-Hyun Yang, Inseok Hwang, Hee Tae Yu, Hangsik Shin, Hui-Nam Pak
2014 C conf
ICCE
Woongshik You, Joon-Young Jung, Dong-Yul Lee, Myung-Ae Chung, Oh-Seok Kwon
2013 C conf
ICCE
Woongshik You, Joon-Young Jung, Dong-Joon Choi, O-Hyung Kwon, Oh-Seok Kwon
2011 conf
URAI
Oh-Seok Kwon, Dong-Ha Lee
2010 conf
ICTC
Woongshik You, Gwangsoon Lee, Dong-Joon Choi, Oh-Seok Kwon
2004 C conf
ACC
Je Hyung Jung, Pyung Hun Chang, Oh-Seok Kwon
2003 conf
Security and Management
Yoe-Sub Shin, Yang-Gyu Kim, Haeng-Seok Ko, Dong-Heyok Jang, Taejoo Chang, Oh-Seok Kwon
redb/extractors/decompiler/apk/apktool_wrapper.py
← Index redb/extractors/decompiler/apk/apktool_wrapper.py python
"""Apktool disassembler subprocess wrapper.

Manages apktool subprocess execution for smali disassembly,
following the CAPA extractor subprocess pattern.
"""

import os
import signal
import subprocess
from typing import List, Optional


class ApktoolDisassembler:
    """Subprocess wrapper for apktool smali disassembly."""

    def __init__(
        self, apktool_path: str = None, timeout: int = None, log=None
    ):
        self.apktool_path = apktool_path or os.getenv("APKTOOL_PATH", "apktool")
        self.timeout = timeout or int(os.getenv("APKTOOL_TIMEOUT", "120"))
        self.log = log

    def disassemble(self, apk_path: str, output_dir: str) -> bool:
        """Run apktool disassembly on an APK file.

        Returns True on success, False on failure.
        """
        cmd = [
            self.apktool_path,
            "d",
            "--no-res",
            "--force",
            "--output", output_dir,
            apk_path,
        ]

        try:
            process = subprocess.Popen(
                cmd,
                stdout=subprocess.PIPE,
                stderr=subprocess.PIPE,
                text=True,
                preexec_fn=os.setsid,
            )

            try:
                stdout, stderr = process.communicate(timeout=self.timeout)
                if process.returncode != 0:
                    if self.log:
                        self.log.warning(
                            f"apktool returned non-zero exit code {process.returncode}: "
                            f"{stderr[:500] if stderr else 'no stderr'}"
                        )
                    return False
                return True

            except subprocess.TimeoutExpired:
                if self.log:
                    self.log.error(
                        f"apktool timed out after {self.timeout}s"
                    )
                try:
                    os.killpg(os.getpgid(process.pid), signal.SIGTERM)
                    process.wait(timeout=3)
                except (ProcessLookupError, subprocess.TimeoutExpired):
                    try:
                        os.killpg(os.getpgid(process.pid), signal.SIGKILL)
                    except ProcessLookupError:
                        pass
                return False

        except FileNotFoundError:
            if self.log:
                self.log.error(
                    f"apktool not found at '{self.apktool_path}'. "
                    "Install apktool or set APKTOOL_PATH env var."
                )
            return False
        except Exception as e:
            if self.log:
                self.log.error(f"apktool execution error: {e}")
            return False

    def get_smali_directories(self, output_dir: str) -> List[str]:
        """Return paths to all smali output directories.

        Handles multi-DEX: smali/, smali_classes2/, smali_classes3/, etc.
        """
        smali_dirs = []
        if not os.path.isdir(output_dir):
            return smali_dirs

        for entry in sorted(os.listdir(output_dir)):
            if entry == "smali" or entry.startswith("smali_classes"):
                full_path = os.path.join(output_dir, entry)
                if os.path.isdir(full_path):
                    smali_dirs.append(full_path)

        return smali_dirs