Kangyong You

19 papers B 2Journal 11Unranked 6
YearRankTypeTitle / Venue / Authors
2022 J jnl
IEEE Trans. Veh. Technol.
Yueyan Chu, Wenbin Guo, Kangyong You, Lei Zhao, Tao Peng, Wenbo Wang
2021 J jnl
CoRR
Yueyan Chu, Kangyong You, Wenbin Guo
2020 J jnl
IEEE Trans. Signal Inf. Process. over Networks
Yueliang Liu, Wenbin Guo, Kangyong You, Lei Zhao, Tao Peng, Wenbo Wang
2020 J jnl
IEEE Trans. Signal Process.
Kangyong You, Wenbin Guo, Tao Peng, Yueliang Liu, Peiliang Zuo, Wenbo Wang
2020 conf
VTC Spring
Peiliang Zuo, Tao Peng, Xinyue Wang, Kangyong You, Hanbo Jing, Wenbin Guo, Wenbo Wang
2020 conf
VTC Spring
Peiliang Zuo, Tao Peng, Hao Wu, Kangyong You, Hanbo Jing, Wenbin Guo, Wenbo Wang
2019 J jnl
IEEE Access
Tao Peng, Peiliang Zuo, Kangyong You, Hanbo Jing, Wenbin Guo, Wenbo Wang
2019 J jnl
IEEE Access
Yueliang Liu, Lishan Yang, Kangyong You, Wenbin Guo, Wenbo Wang
2019 conf
ICC
Yueliang Liu, Kangyong You, Wenbin Guo, Tao Peng, Wenbo Wang
2019 J jnl
CoRR
Yueliang Liu, Wenbin Guo, Kangyong You, Lei Zhao, Tao Peng, Wenbo Wang
2019 conf
CSPS
Yue Wang, Kangyong You, Dan Wang, Wenbin Guo
2019 B conf
PIMRC
Dan Wang, Kangyong You, Peiliang Zuo, Yue Wang, Wenbin Guo, Tao Peng
2019 J jnl
IEEE Access
Peiliang Zuo, Tao Peng, Kangyong You, Wenbin Guo, Wenbo Wang
2019 B conf
PIMRC
Kangyong You, Wenbin Guo, Peiliang Zuo, Yueliang Liu, Wenbo Wang
2018 J jnl
IEEE Commun. Lett.
Kangyong You, Wenbin Guo, Yueliang Liu, Wenbo Wang, Zhuo Sun
2018 conf
CSPS (1)
Shanshan Li, Kangyong You, Yueliang Liu, Wenbin Guo
2017 J jnl
EURASIP J. Adv. Signal Process.
Lishan Yang, Kangyong You, Wenbin Guo
2016 J jnl
EURASIP J. Adv. Signal Process.
Lishan Yang, Kangyong You, Wenbin Guo
2016 conf
WPMC
Xiaofei Lin, Kangyong You, Wenbin Guo
redb/extractors/decompiler/apk/library_filter.py
← Index redb/extractors/decompiler/apk/library_filter.py python
"""Package-based library filtering for APK DEX code analysis.

Determines whether a method belongs to a known library/framework package
and should be filtered out of content tables. This is the Android equivalent
of is_lib_or_thunk() in the Binary Ninja pipeline.
"""

import os
from typing import Dict, List


DEFAULT_LIBRARY_PREFIXES = [
    "android.",
    "androidx.",
    "com.google.android.",
    "com.google.firebase.",
    "com.google.gson.",
    "com.google.protobuf.",
    "kotlin.",
    "kotlinx.",
    "org.apache.",
    "com.squareup.",
    "io.reactivex.",
    "org.reactivestreams.",
    "com.facebook.",
    "com.crashlytics.",
    "io.fabric.",
    "org.junit.",
    "org.mockito.",
]


class LibraryFilter:
    """Filters library/framework classes from APK analysis."""

    def __init__(self, prefixes: List[str] = None):
        env_prefixes = os.getenv("APK_LIBRARY_PREFIXES")
        if env_prefixes:
            self._prefixes = [p.strip() for p in env_prefixes.split(",") if p.strip()]
        elif prefixes is not None:
            self._prefixes = prefixes
        else:
            self._prefixes = DEFAULT_LIBRARY_PREFIXES

        # Convert Dalvik-style prefixes to both formats for matching
        self._dot_prefixes = tuple(self._prefixes)

        self._stats = {"library": 0, "user": 0}

    def is_library(self, class_name: str) -> bool:
        """Check if a class belongs to a known library/framework package.

        Accepts both Java dot notation (com.example.Foo) and Dalvik
        descriptor notation (Lcom/example/Foo;).
        """
        # Normalize Dalvik descriptor to dot notation
        normalized = self._normalize_class_name(class_name)

        is_lib = normalized.startswith(self._dot_prefixes)
        if is_lib:
            self._stats["library"] += 1
        else:
            self._stats["user"] += 1
        return is_lib

    def get_filter_stats(self) -> Dict[str, int]:
        """Return counts of filtered vs. retained classes."""
        return dict(self._stats)

    @staticmethod
    def _normalize_class_name(class_name: str) -> str:
        """Convert Dalvik descriptor to dot notation.

        Lcom/example/Foo; -> com.example.Foo
        com.example.Foo -> com.example.Foo
        """
        if class_name.startswith("L") and class_name.endswith(";"):
            return class_name[1:-1].replace("/", ".")
        return class_name.replace("/", ".")