es
Feedback
Neural Programmers

Neural Programmers </>

Ir al canal en Telegram

We Are Programmers Across The World We're Developing Some Useful Projects Together. Wish You Get Good Time With Us! Group @Neural_Group

Mostrar más
6 872
Suscriptores
Sin datos24 horas
+87 días
-1030 días
Archivo de publicaciones
Mensaje de voz00:07

Guys i created a useful bot send any text with any accent i convert to speech pls comment down 😂‼️

API SERVER TUNRED ON AGAIN

ALL BOTS BACK

Fresh PayPal Belance Loaded ScamPage Log If Anyone Need Buy Dm @Mr_Martin_Dev 如果有人需要購買 Dm @Mr_Martin_Dev,新鮮的 PayPal Belance 已
+2
Fresh PayPal Belance Loaded ScamPage Log If Anyone Need Buy Dm @Mr_Martin_Dev 如果有人需要購買 Dm @Mr_Martin_Dev,新鮮的 PayPal Belance 已載入 ScamPage 日誌 Свежий журнал мошенничества с PayPal Belance, если кому-то нужно, купите Dm @Mr_Martin_Dev تم تحميل سجل صفحة الاحتيال الجديد من PayPal Belance إذا كان أي شخص يحتاج إلى شراء Dm@Mr_Martin_Dev

reactions if you dont mind 😁

Complete Spamming Course ✨‼️

anyone can hack snap id pls msg me

IOS USER DM ME TO GET TG PREMIUM OR FREEFIRE DIAMOND 💎 FREE OFFER DM HERE ~ @im_satyam_chauhan

FLASHER NOT TODAY LOL MY PARTNERS ARE OFFLINE

for selected_id in selected_ids:
            selected_message = app.get_messages(selected_channel.id, selected_id)

            try:
                def progress_bar(current, total):
                    with tqdm(total=total, desc="Downloading...", bar_format="{l_bar}{bar}{r_bar}") as pbar:
                        pbar.update(current)
                app.download_media(selected_message, progress=progress_bar)
                print(f"{Fore.MAGENTA + Style.BRIGHT}Media downloaded successfully for Message ID {selected_id}!{Style.RESET_ALL}")
            except Exception as e:
                print(f"Error downloading for Message ID {selected_id}: {e}")

    elif preference.lower() == 'message':
        selected_ids_str = input(f"{Fore.GREEN}{Style.BRIGHT}Enter the message IDs you want to download (separated by spaces): {Style.RESET_ALL}")
        selected_ids = map(int, selected_ids_str.split())

        for selected_id in selected_ids:
            selected_message = app.get_messages(selected_channel.id, selected_id)

            try:
                def progress_bar(current, total):
                    with tqdm(total=total, desc="Downloading...", bar_format="{l_bar}{bar}{r_bar}") as pbar:
                        pbar.update(current)
                app.download_media(selected_message, progress=progress_bar)
                print(f"{Fore.MAGENTA + Style.BRIGHT}Media downloaded successfully for Message ID {selected_id}!{Style.RESET_ALL}")
            except Exception as e:
                print(f"Error downloading for Message ID {selected_id}: {e}")

    else:
        print(f"{Fore.RED}{Style.BRIGHT}Invalid input. Please type 'channel' or 'message'.{Style.RESET_ALL}")

else:
    print(f"{Fore.RED}{Style.BRIGHT}Invalid input. Please type 'link' or 'dialog'.{Style.RESET_ALL}")

Part 2

from pyrogram import Client
from pyrogram.errors import UserAlreadyParticipant
from colorama import Fore, Style
from tqdm import tqdm

from colorama import init
init()

r = Fore.RED
ye = Fore.YELLOW
re="\033[1;31m"
gr="\033[1;32m"
wi="\033[1;35m"

api_id = 'api id' #-- enter your api id.
api_hash = 'api hash' #-- enter your api hash.
phone_number = 'phone number' #-- enter your tg phone number.

app = Client(
    'my_user',
    api_id=api_id,
    api_hash=api_hash,
    phone_number=phone_number,
)
app.start()

link_or_dialog = input(f"{Fore.CYAN}{Style.BRIGHT}Do you want to use a link or a dialog? (Type 'link' or 'dialog'): {re}")

if link_or_dialog.lower() == 'link':
    group_link = input(f"{Fore.CYAN}{Style.BRIGHT}If PRIVATE enter link if PUBLIC enter username: {re}")
    try:
        app.join_chat(group_link)
    except UserAlreadyParticipant:
        pass
    except Exception as e:
        print(e)
    try:
        raj = app.get_chat(group_link)
    except Exception as e:
        print(e)
    selected_ids_str = input(f"{Fore.GREEN}{Style.BRIGHT}Enter the message IDs you want to download (separated by spaces): {Style.RESET_ALL}")
    selected_ids = map(int, selected_ids_str.split())

    for selected_id in selected_ids:
        selected_message = app.get_messages(raj.id, selected_id)

        try:
            def progress_bar(current, total):
                with tqdm(total=total, desc="Downloading...", bar_format="{l_bar}{bar}{r_bar}") as pbar:
                    pbar.update(current)
            app.download_media(selected_message, progress=progress_bar)
            print(f"{Fore.MAGENTA + Style.BRIGHT}Media downloaded successfully for Message ID {selected_id}!{Style.RESET_ALL}")
        except Exception as e:
            print(f"Error downloading for Message ID {selected_id}: {e}")



elif link_or_dialog.lower() == 'dialog':
    print(f"{Fore.CYAN}{Style.BRIGHT}Choose a channel: {re}")
    try:
        dialogs = list(app.get_dialogs())
        for index, dialog in enumerate(dialogs):
            print(f"{re}{index + 1}. {gr}{dialog.chat.first_name or dialog.chat.title}")
    except Exception as e:
        print(e)

    selected_channel_index = int(input(f"{Fore.CYAN}{Style.BRIGHT}Enter the number of the channel you want to explore: {re}")) - 1

    selected_channel = dialogs[selected_channel_index].chat

    print(f"{Fore.CYAN}{Style.BRIGHT}Do you want to get messages from the entire channel/dialog or by a specific message ID?")
    preference = input(f"{Fore.GREEN}{Style.BRIGHT}Type 'channel' for entire channel, 'message' for a specific message ID: {re}")

    if preference.lower() == 'channel':
        limitenter = int(input(f"{Fore.YELLOW + Style.BRIGHT}Enter Limit of messages or use 0 all messages: {re}"))
        try:
            messages = app.get_chat_history(selected_channel.id, limitenter)
            print(Fore.RED + Style.BRIGHT + "All media in the channel:" + Style.RESET_ALL)
            for message in messages:
                if message.caption:
                    print(Fore.MAGENTA + Style.BRIGHT + f"{message.id}. {ye + Style.BRIGHT}Caption: {re}{message.caption} {wi}Media Type: {gr}{message.media}" + Style.RESET_ALL)
                else:
                    print(Fore.BLUE + Style.BRIGHT + f"{message.id}. {ye + Style.BRIGHT}Caption: {re}No Caption | {wi}Media Type: {gr}{message.media}" + Style.RESET_ALL)
        except Exception as e:
            print(e)
        selected_ids_str = input(f"{Fore.GREEN}{Style.BRIGHT}Enter the message IDs you want to download (separated by spaces): {Style.RESET_ALL}")
        selected_ids = map(int, selected_ids_str.split())

       

with tqdm(total=total, desc="Downloading...", bar_format="{l_bar}{bar}{r_bar}") as pbar: pbar.update(current) app.download_media(selected_message, progress=progress_bar) print(f"{Fore.MAGENTA + Style.BRIGHT}Media downloaded successfully for Message ID {selected_id}!{Style.RESET_ALL}") except Exception as e: print(f"Error downloading for Message ID {selected_id}: {e}") elif preference.lower() == 'message': selected_ids_str = input(f"{Fore.GREEN}{Style.BRIGHT}Enter the message IDs you want to download (separated by spaces): {Style.RESET_ALL}") selected_ids = map(int, selected_ids_str.split()) for selected_id in selected_ids: selected_message = app.get_messages(selected_channel.id, selected_id) try: def progress_bar(current, total): with tqdm(total=total, desc="Downloading...", bar_format="{l_bar}{bar}{r_bar}") as pbar: pbar.update(current) app.download_media(selected_message, progress=progress_bar) print(f"{Fore.MAGENTA + Style.BRIGHT}Media downloaded successfully for Message ID {selected_id}!{Style.RESET_ALL}") except Exception as e: print(f"Error downloading for Message ID {selected_id}: {e}") else: print(f"{Fore.RED}{Style.BRIGHT}Invalid input. Please type 'channel' or 'message'.{Style.RESET_ALL}") else: print(f"{Fore.RED}{Style.BRIGHT}Invalid input. Please type 'link' or 'dialog'.{Style.RESET_ALL}") `

` from pyrogram import Client from pyrogram.errors import UserAlreadyParticipant from colorama import Fore, Style from tqdm import tqdm from colorama import init init() r = Fore.RED ye = Fore.YELLOW re="\033[1;31m" gr="\033[1;32m" wi="\033[1;35m" api_id = 'api id' #-- enter your api id. api_hash = 'api hash' #-- enter your api hash. phone_number = 'phone number' #-- enter your tg phone number. app = Client( 'my_user', api_id=api_id, api_hash=api_hash, phone_number=phone_number, ) app.start() link_or_dialog = input(f"{Fore.CYAN}{Style.BRIGHT}Do you want to use a link or a dialog? (Type 'link' or 'dialog'): {re}") if link_or_dialog.lower() == 'link': group_link = input(f"{Fore.CYAN}{Style.BRIGHT}If PRIVATE enter link if PUBLIC enter username: {re}") try: app.join_chat(group_link) except UserAlreadyParticipant: pass except Exception as e: print(e) try: raj = app.get_chat(group_link) except Exception as e: print(e) selected_ids_str = input(f"{Fore.GREEN}{Style.BRIGHT}Enter the message IDs you want to download (separated by spaces): {Style.RESET_ALL}") selected_ids = map(int, selected_ids_str.split()) for selected_id in selected_ids: selected_message = app.get_messages(raj.id, selected_id) try: def progress_bar(current, total): with tqdm(total=total, desc="Downloading...", bar_format="{l_bar}{bar}{r_bar}") as pbar: pbar.update(current) app.download_media(selected_message, progress=progress_bar) print(f"{Fore.MAGENTA + Style.BRIGHT}Media downloaded successfully for Message ID {selected_id}!{Style.RESET_ALL}") except Exception as e: print(f"Error downloading for Message ID {selected_id}: {e}") elif link_or_dialog.lower() == 'dialog': print(f"{Fore.CYAN}{Style.BRIGHT}Choose a channel: {re}") try: dialogs = list(app.get_dialogs()) for index, dialog in enumerate(dialogs): print(f"{re}{index + 1}. {gr}{dialog.chat.first_name or dialog.chat.title}") except Exception as e: print(e) selected_channel_index = int(input(f"{Fore.CYAN}{Style.BRIGHT}Enter the number of the channel you want to explore: {re}")) - 1 selected_channel = dialogs[selected_channel_index].chat print(f"{Fore.CYAN}{Style.BRIGHT}Do you want to get messages from the entire channel/dialog or by a specific message ID?") preference = input(f"{Fore.GREEN}{Style.BRIGHT}Type 'channel' for entire channel, 'message' for a specific message ID: {re}") if preference.lower() == 'channel': limitenter = int(input(f"{Fore.YELLOW + Style.BRIGHT}Enter Limit of messages or use 0 all messages: {re}")) try: messages = app.get_chat_history(selected_channel.id, limitenter) print(Fore.RED + Style.BRIGHT + "All media in the channel:" + Style.RESET_ALL) for message in messages: if message.caption: print(Fore.MAGENTA + Style.BRIGHT + f"{message.id}. {ye + Style.BRIGHT}Caption: {re}{message.caption} {wi}Media Type: {gr}{message.media}" + Style.RESET_ALL) else: print(Fore.BLUE + Style.BRIGHT + f"{message.id}. {ye + Style.BRIGHT}Caption: {re}No Caption | {wi}Media Type: {gr}{message.media}" + Style.RESET_ALL) except Exception as e: print(e) selected_ids_str = input(f"{Fore.GREEN}{Style.BRIGHT}Enter the message IDs you want to download (separated by spaces): {Style.RESET_ALL}") selected_ids = map(int, selected_ids_str.split()) for selected_id in selected_ids: selected_message = app.get_messages(selected_channel.id, selected_id) try: def progress_bar(current, total):

Approved ✅ -------------------- CC: 4147202554962066|01|2031|789 Response: Your card's security code is invalid. Approved ✅ -------------------- CC: 4147202554962595|01|2030|824 Response: Your card's security code is invalid. Approved ✅ -------------------- CC: 4147202554960946|12|2028|389 Response: Your card's security code is invalid. Approved ✅ -------------------- CC: 4147202554960359|09|2026|626 Response: Your card's security code is invalid. Approved ✅ -------------------- CC: 4147202554960359|12|2027|140 Response: Your card's security code is invalid. Approved ✅ -------------------- CC: 4147202554965382|07|2028|232 Response: Your card's security code is invalid. Approved ✅ -------------------- CC: 4147202554967578|05|2027|120 Response: Your card's security code is invalid.

➡️ How To Card Hostinger.com ⬅️ ⬇️Bin-Inside the Video 📝IP - USA/NY 10080😙 👍Charged Cards are Uploaded- BlackHeadsCC 🌟Credit- BlackHeads As always 👑 💎Remove Cvv section same as shown in the video 💎Note - After We receive 30+ feedbacks from users I'll drop surfshark carding method From ccn 😒 ❤️Reason For Leaking - Not Having Intrests in Carding anymore!
Any query? Or Feedbacks send here

burpsuite_pro_v2024.3.1.2.7z703.65 MB

Wifi-jammer.srt0.05 KB