\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82 csarite.com
KUJUNTI.ID MINISH3LL
Path : /proc/self/root/tmp/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : //proc/self/root/tmp/fix_strip.py


with open('/root/email-ai/obmailai.py', 'r') as f:
    code = f.read()

# clean() fonksiyonundan sonrasini bul ve strip_html'i ayri fonksiyon olarak ekle
old = '''def clean(text: str) -> str:
    """NUL ve sorunlu karakterleri temizle."""
    if not text:
        return ""
    return text.replace("\\x00", "").replace("\\u0000", "")'''

new = '''def clean(text: str) -> str:
    """NUL ve sorunlu karakterleri temizle."""
    if not text:
        return ""
    return text.replace("\\x00", "").replace("\\u0000", "")


def strip_html(text: str) -> str:
    import html as html_mod
    text = re.sub(r"<style[^>]*>.*?</style>", " ", text, flags=re.DOTALL | re.IGNORECASE)
    text = re.sub(r"<script[^>]*>.*?</script>", " ", text, flags=re.DOTALL | re.IGNORECASE)
    text = re.sub(r"<[^>]+>", " ", text)
    text = html_mod.unescape(text)
    return re.sub(r"\\s+", " ", text).strip()'''

if old in code:
    code = code.replace(old, new)
    # Eski olu kodu temizle (clean() icindeki dead code)
    dead = '''    import html as html_mod
    text = re.sub(r"<style[^>]*>.*?</style>", " ", text, flags=re.DOTALL | re.IGNORECASE)
    text = re.sub(r"<script[^>]*>.*?</script>", " ", text, flags=re.DOTALL | re.IGNORECASE)
    text = re.sub(r"<[^>]+>", " ", text)
    text = html_mod.unescape(text)
    return re.sub(r"\\s+", " ", text).strip()'''
    code = code.replace(dead, "")
    print("FIXED OK")
else:
    print("NOT FOUND - farkli format var")

with open('/root/email-ai/obmailai.py', 'w') as f:
    f.write(code)

© KUJUNTI.ID