Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

if u run this u have autism #1

Open
Squashycord opened this issue Mar 5, 2024 · 5 comments
Open

if u run this u have autism #1

Squashycord opened this issue Mar 5, 2024 · 5 comments

Comments

@Squashycord
Copy link

least obvious github rat

@battlejesus
Copy link

it's not rat, I accessed the source files with reverse engineering and found these codes, if you want to check them out:

import time
import os
import discord
from discord.ext import commands
from colorama import init
from colorama import Fore
from pypresence import Presence
import asyncio
os.system('title Copy Server Tool - By HzzH')
client_id = '1075805026003456100'
RPC = Presence(client_id)
RPC.connect()
RPC.update(large_image='byhzzzh', details='Copy Server Tool')

def main():
    print(f'{Fore.LIGHTYELLOW_EX}  /$$$$$$                                       /$$$$$$                                                   \n /$$__  $$                                     /$$__  $$                                                  \n| $$  \\__/  /$$$$$$   /$$$$$$  /$$   /$$      | $$  \\__/  /$$$$$$   /$$$$$$  /$$    /$$ /$$$$$$   /$$$$$$ \n| $$       /$$__  $$ /$$__  $$| $$  | $$      |  $$$$$$  /$$__  $$ /$$__  $$|  $$  /$$//$$__  $$ /$$__  $$\n| $$      | $$  \\ $$| $$  \\ $$| $$  | $$       \\____  $$| $$$$$$$$| $$  \\__/ \\  $$/$$/| $$$$$$$$| $$  \\__/\n| $$    $$| $$  | $$| $$  | $$| $$  | $$       /$$  \\ $$| $$_____/| $$        \\  $$$/ | $$_____/| $$      \n|  $$$$$$/|  $$$$$$/| $$$$$$$/|  $$$$$$$      |  $$$$$$/|  $$$$$$$| $$         \\  $/  |  $$$$$$$| $$      \n \\______/  \\______/ | $$____/  \\____  $$       \\______/  \\_______/|__/          \\_/    \\_______/|__/      \n                    | $$       /$$  | $$                                                                  \n                    | $$      |  $$$$$$/                                                                  \n                    |__/       \\______/                                                                   \n\n    [1] Copy Server - [2] Change Color\n    {Fore.YELLOW}\n    Tool By HzzH - \n    {Fore.YELLOW}Github: {Fore.LIGHTBLUE_EX}https://github.com/HzzH-Tools\n    {Fore.YELLOW}Youtube: {Fore.LIGHTBLUE_EX}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n    {Fore.YELLOW}Discord: H-zz-H#0891 - {Fore.LIGHTBLUE_EX}https://discord.gg/UG3xYs4dgp')
main()
input1 = input('Choice: ')
if input1 == '1':
    init()
    os.system('cls' or 'clear')
    token = input('{}\n {}${}TOKEN{}${}-'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.YELLOW, Fore.LIGHTBLUE_EX, Fore.YELLOW))
    prefix = input('{}\n {}${}PREFIX{}${}-'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.YELLOW, Fore.LIGHTBLUE_EX, Fore.YELLOW))
    client = commands.Bot(command_prefix=prefix, case_insensitive=True, self_bot=True)
    client.remove_command('help')
    header = {'Authorization': f'Bot {token}'}
    os.system('cls' if os.name == 'nt' else 'clear')
    os.system('cls' if os.name == 'nt' else 'clear')
    intents = discord.Intents.all()
    intents.members = True

    @client.event
    async def on_ready():
        print('------')
        print('{}\n[>] {} Selfbot run... {}'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.RESET))
        print('{}\n[>] {} Use: {}{}copy \n'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.RESET, prefix))
        print('     - Token: ', token.replace)('M', '*').replace('.', '_').replace('A', '*').replace('B', '*').replace('C', '*').replace('D', '*').replace('E', '*').replace('F', '*').replace('G', '*').replace('H', '*').replace('I', '*').replace('J', '*').replace('K', '*').replace('L', '*').replace('N', '*').replace('O', '*').replace('P', '*').replace('Q', '*').replace('R', '*').replace('S', '*').replace('T'),
        print('     - Prefix: ' + prefix)
        print(f'            {Fore.BLUE}\n    Tool By HzzH - \n    {Fore.YELLOW}Github: {Fore.LIGHTBLUE_EX}https://github.com/HzzH-Tools\n    {Fore.YELLOW}Youtube: {Fore.LIGHTBLUE_EX}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n    {Fore.YELLOW}Discord: H-zz-H#0891 - {Fore.LIGHTBLUE_EX}https://discord.gg/UG3xYs4dgp')
        print('\n------\n')

    @client.command()
    async def copy(ctx):
        await ctx.message.delete()
        wow = await client.create_guild(f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}')
        await asyncio.sleep(4)
        for g in client.guilds:
            if f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}' in g.name:
                for c in g.channels:
                    await c.delete()
                for cate in ctx.guild.categories:
                    x = await g.create_category(f'{cate.name}')
                    for chann in cate.channels:
                        if isinstance(chann, discord.VoiceChannel):
                            await x.create_voice_channel(f'{chann}')
                        if isinstance(chann, discord.TextChannel):
                            await x.create_text_channel(f'{chann}')
                print(ctx.guild.roles)
        for role in ctx.guild.roles[::(-1)]:
            if role.name!= '@everyone':
                try:
                    await wow.create_role(name=role.name, color=role.color, permissions=role.permissions, hoist=role.hoist, mentionable=role.mentionable)
                    print(f'Created new role : {role.name}')
                except:
                    exit()
    client.run(token, bot=False)
if input1 == '2':
    print('[1] RED')
    color = input('Color: ')
    if color == '1':
        os.system('cls')
        print(Fore.RED)
        print(f'{Fore.LIGHTRED_EX}      /$$$$$$                                       /$$$$$$                                                   \n     /$$__  $$                                     /$$__  $$                                                  \n    | $$  \\__/  /$$$$$$   /$$$$$$  /$$   /$$      | $$  \\__/  /$$$$$$   /$$$$$$  /$$    /$$ /$$$$$$   /$$$$$$ \n    | $$       /$$__  $$ /$$__  $$| $$  | $$      |  $$$$$$  /$$__  $$ /$$__  $$|  $$  /$$//$$__  $$ /$$__  $$\n    | $$      | $$  \\ $$| $$  \\ $$| $$  | $$       \\____  $$| $$$$$$$$| $$  \\__/ \\  $$/$$/| $$$$$$$$| $$  \\__/\n    | $$    $$| $$  | $$| $$  | $$| $$  | $$       /$$  \\ $$| $$_____/| $$        \\  $$$/ | $$_____/| $$      \n    |  $$$$$$/|  $$$$$$/| $$$$$$$/|  $$$$$$$      |  $$$$$$/|  $$$$$$$| $$         \\  $/  |  $$$$$$$| $$      \n     \\______/  \\______/ | $$____/  \\____  $$       \\______/  \\_______/|__/          \\_/    \\_______/|__/      \n                        | $$       /$$  | $$                                                                  \n                        | $$      |  $$$$$$/                                                                  \n                        |__/       \\______/                                                                   \n            [1] Copy Server\n            {Fore.RED}\n            Tool By HzzH - \n            {Fore.RED}Github: {Fore.MAGENTA}https://github.com/HzzH-Tools\n            {Fore.RED}Youtube: {Fore.MAGENTA}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n            {Fore.RED}Discord: H-zz-H#0891 - {Fore.MAGENTA}https://discord.gg/UG3xYs4dgp')
        input2 = input('Choice: ')
        if input2 == '1':
            init()
            os.system('cls' or 'clear')
            token = input('{}\n {}${}TOKEN{}${}-'.format(Fore.RESET, Fore.LIGHTRED_EX, Fore.RED, Fore.LIGHTRED_EX, Fore.MAGENTA))
            prefix = input('{}\n {}${}PREFIX{}${}-'.format(Fore.RESET, Fore.LIGHTRED_EX, Fore.RED, Fore.LIGHTRED_EX, Fore.MAGENTA))
            client = commands.Bot(command_prefix=prefix, case_insensitive=True, self_bot=True)
            client.remove_command('help')
            header = {'Authorization': f'Bot {token}'}
            os.system('cls' if os.name == 'nt' else 'clear')
            os.system('cls' if os.name == 'nt' else 'clear')
            intents = discord.Intents.all()
            intents.members = True

            @client.event
            async def on_ready():
                print('------')
                print('{}\n[>] {} Selfbot run... {}'.format(Fore.RESET, Fore.RED, Fore.RESET))
                print('{}\n[>] {} Use: {}{}copy \n'.format(Fore.RESET, Fore.RED, Fore.RESET, prefix))
                print('     - Token: ', token.replace)('M', '*').replace('.', '_').replace('A', '*').replace('B', '*').replace('C', '*').replace('D', '*').replace('E', '*').replace('F', '*').replace('G', '*').replace('H', '*').replace('I', '*').replace('J', '*').replace('K', '*').replace('L', '*').replace('N', '*').replace('O', '*').replace('P', '*').replace('Q', '*').replace('R', '*').replace('S', '*').replace('T'),
                print('     - Prefix: ' + prefix)
                print(f'            {Fore.RED}\n            Tool By HzzH - \n            {Fore.RED}Github: {Fore.MAGENTA}https://github.com/HzzH-Tools\n            {Fore.RED}Youtube: {Fore.MAGENTA}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n            {Fore.RED}Discord: H-zz-H#0891 - {Fore.MAGENTA}https://discord.gg/UG3xYs4dgp')
                print('\n------\n')

            @client.command()
            async def copy(ctx):
                await ctx.message.delete()
                wow = await client.create_guild(f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}')
                await asyncio.sleep(4)
                for g in client.guilds:
                    if f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}' in g.name:
                        for c in g.channels:
                            await c.delete()
                        for cate in ctx.guild.categories:
                            x = await g.create_category(f'{cate.name}')
                            for chann in cate.channels:
                                if isinstance(chann, discord.VoiceChannel):
                                    await x.create_voice_channel(f'{chann}')
                                if isinstance(chann, discord.TextChannel):
                                    await x.create_text_channel(f'{chann}')
                        print(ctx.guild.roles)
                for role in ctx.guild.roles[::(-1)]:
                    if role.name!= '@everyone':
                        try:
                            await wow.create_role(name=role.name, color=role.color, permissions=role.permissions, hoist=role.hoist, mentionable=role.mentionable)
                            print(f'Created new role : {role.name}')
                        except:
                            exit()
            client.run(token, bot=False)
        else:  # inserted
            print(f'{Fore.RED}Error[]')
            time.sleep(2)
            exit()
    else:  # inserted
        print(f'{Fore.RED}Error[]')
        time.sleep(2)
        exit()
else:  # inserted
    print(f'{Fore.RED}Error[]')
    time.sleep(2)
    exit()

@appmaker2apps
Copy link

appmaker2apps commented Feb 23, 2025

bro i ran this on an vm and bro it fucking went in app data and broke the vms mbr LOL

@H-zz-H69
Copy link

bro i ran this on an vm and bro it fucking went in app data and broke the vms mbr LOL

I coded this and it did not lil bro.. I was like in 5 months python experience and didnt care about coding viruses lol. Only bcs its an binary u dont have to talk shit without knowing my guy

@H-zz-H69
Copy link

it's not rat, I accessed the source files with reverse engineering and found these codes, if you want to check them out:

import time
import os
import discord
from discord.ext import commands
from colorama import init
from colorama import Fore
from pypresence import Presence
import asyncio
os.system('title Copy Server Tool - By HzzH')
client_id = '1075805026003456100'
RPC = Presence(client_id)
RPC.connect()
RPC.update(large_image='byhzzzh', details='Copy Server Tool')

def main():
    print(f'{Fore.LIGHTYELLOW_EX}  /$$$$$$                                       /$$$$$$                                                   \n /$$__  $$                                     /$$__  $$                                                  \n| $$  \\__/  /$$$$$$   /$$$$$$  /$$   /$$      | $$  \\__/  /$$$$$$   /$$$$$$  /$$    /$$ /$$$$$$   /$$$$$$ \n| $$       /$$__  $$ /$$__  $$| $$  | $$      |  $$$$$$  /$$__  $$ /$$__  $$|  $$  /$$//$$__  $$ /$$__  $$\n| $$      | $$  \\ $$| $$  \\ $$| $$  | $$       \\____  $$| $$$$$$$$| $$  \\__/ \\  $$/$$/| $$$$$$$$| $$  \\__/\n| $$    $$| $$  | $$| $$  | $$| $$  | $$       /$$  \\ $$| $$_____/| $$        \\  $$$/ | $$_____/| $$      \n|  $$$$$$/|  $$$$$$/| $$$$$$$/|  $$$$$$$      |  $$$$$$/|  $$$$$$$| $$         \\  $/  |  $$$$$$$| $$      \n \\______/  \\______/ | $$____/  \\____  $$       \\______/  \\_______/|__/          \\_/    \\_______/|__/      \n                    | $$       /$$  | $$                                                                  \n                    | $$      |  $$$$$$/                                                                  \n                    |__/       \\______/                                                                   \n\n    [1] Copy Server - [2] Change Color\n    {Fore.YELLOW}\n    Tool By HzzH - \n    {Fore.YELLOW}Github: {Fore.LIGHTBLUE_EX}https://github.com/HzzH-Tools\n    {Fore.YELLOW}Youtube: {Fore.LIGHTBLUE_EX}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n    {Fore.YELLOW}Discord: H-zz-H#0891 - {Fore.LIGHTBLUE_EX}https://discord.gg/UG3xYs4dgp')
main()
input1 = input('Choice: ')
if input1 == '1':
    init()
    os.system('cls' or 'clear')
    token = input('{}\n {}${}TOKEN{}${}-'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.YELLOW, Fore.LIGHTBLUE_EX, Fore.YELLOW))
    prefix = input('{}\n {}${}PREFIX{}${}-'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.YELLOW, Fore.LIGHTBLUE_EX, Fore.YELLOW))
    client = commands.Bot(command_prefix=prefix, case_insensitive=True, self_bot=True)
    client.remove_command('help')
    header = {'Authorization': f'Bot {token}'}
    os.system('cls' if os.name == 'nt' else 'clear')
    os.system('cls' if os.name == 'nt' else 'clear')
    intents = discord.Intents.all()
    intents.members = True

    @client.event
    async def on_ready():
        print('------')
        print('{}\n[>] {} Selfbot run... {}'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.RESET))
        print('{}\n[>] {} Use: {}{}copy \n'.format(Fore.RESET, Fore.LIGHTBLUE_EX, Fore.RESET, prefix))
        print('     - Token: ', token.replace)('M', '*').replace('.', '_').replace('A', '*').replace('B', '*').replace('C', '*').replace('D', '*').replace('E', '*').replace('F', '*').replace('G', '*').replace('H', '*').replace('I', '*').replace('J', '*').replace('K', '*').replace('L', '*').replace('N', '*').replace('O', '*').replace('P', '*').replace('Q', '*').replace('R', '*').replace('S', '*').replace('T'),
        print('     - Prefix: ' + prefix)
        print(f'            {Fore.BLUE}\n    Tool By HzzH - \n    {Fore.YELLOW}Github: {Fore.LIGHTBLUE_EX}https://github.com/HzzH-Tools\n    {Fore.YELLOW}Youtube: {Fore.LIGHTBLUE_EX}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n    {Fore.YELLOW}Discord: H-zz-H#0891 - {Fore.LIGHTBLUE_EX}https://discord.gg/UG3xYs4dgp')
        print('\n------\n')

    @client.command()
    async def copy(ctx):
        await ctx.message.delete()
        wow = await client.create_guild(f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}')
        await asyncio.sleep(4)
        for g in client.guilds:
            if f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}' in g.name:
                for c in g.channels:
                    await c.delete()
                for cate in ctx.guild.categories:
                    x = await g.create_category(f'{cate.name}')
                    for chann in cate.channels:
                        if isinstance(chann, discord.VoiceChannel):
                            await x.create_voice_channel(f'{chann}')
                        if isinstance(chann, discord.TextChannel):
                            await x.create_text_channel(f'{chann}')
                print(ctx.guild.roles)
        for role in ctx.guild.roles[::(-1)]:
            if role.name!= '@everyone':
                try:
                    await wow.create_role(name=role.name, color=role.color, permissions=role.permissions, hoist=role.hoist, mentionable=role.mentionable)
                    print(f'Created new role : {role.name}')
                except:
                    exit()
    client.run(token, bot=False)
if input1 == '2':
    print('[1] RED')
    color = input('Color: ')
    if color == '1':
        os.system('cls')
        print(Fore.RED)
        print(f'{Fore.LIGHTRED_EX}      /$$$$$$                                       /$$$$$$                                                   \n     /$$__  $$                                     /$$__  $$                                                  \n    | $$  \\__/  /$$$$$$   /$$$$$$  /$$   /$$      | $$  \\__/  /$$$$$$   /$$$$$$  /$$    /$$ /$$$$$$   /$$$$$$ \n    | $$       /$$__  $$ /$$__  $$| $$  | $$      |  $$$$$$  /$$__  $$ /$$__  $$|  $$  /$$//$$__  $$ /$$__  $$\n    | $$      | $$  \\ $$| $$  \\ $$| $$  | $$       \\____  $$| $$$$$$$$| $$  \\__/ \\  $$/$$/| $$$$$$$$| $$  \\__/\n    | $$    $$| $$  | $$| $$  | $$| $$  | $$       /$$  \\ $$| $$_____/| $$        \\  $$$/ | $$_____/| $$      \n    |  $$$$$$/|  $$$$$$/| $$$$$$$/|  $$$$$$$      |  $$$$$$/|  $$$$$$$| $$         \\  $/  |  $$$$$$$| $$      \n     \\______/  \\______/ | $$____/  \\____  $$       \\______/  \\_______/|__/          \\_/    \\_______/|__/      \n                        | $$       /$$  | $$                                                                  \n                        | $$      |  $$$$$$/                                                                  \n                        |__/       \\______/                                                                   \n            [1] Copy Server\n            {Fore.RED}\n            Tool By HzzH - \n            {Fore.RED}Github: {Fore.MAGENTA}https://github.com/HzzH-Tools\n            {Fore.RED}Youtube: {Fore.MAGENTA}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n            {Fore.RED}Discord: H-zz-H#0891 - {Fore.MAGENTA}https://discord.gg/UG3xYs4dgp')
        input2 = input('Choice: ')
        if input2 == '1':
            init()
            os.system('cls' or 'clear')
            token = input('{}\n {}${}TOKEN{}${}-'.format(Fore.RESET, Fore.LIGHTRED_EX, Fore.RED, Fore.LIGHTRED_EX, Fore.MAGENTA))
            prefix = input('{}\n {}${}PREFIX{}${}-'.format(Fore.RESET, Fore.LIGHTRED_EX, Fore.RED, Fore.LIGHTRED_EX, Fore.MAGENTA))
            client = commands.Bot(command_prefix=prefix, case_insensitive=True, self_bot=True)
            client.remove_command('help')
            header = {'Authorization': f'Bot {token}'}
            os.system('cls' if os.name == 'nt' else 'clear')
            os.system('cls' if os.name == 'nt' else 'clear')
            intents = discord.Intents.all()
            intents.members = True

            @client.event
            async def on_ready():
                print('------')
                print('{}\n[>] {} Selfbot run... {}'.format(Fore.RESET, Fore.RED, Fore.RESET))
                print('{}\n[>] {} Use: {}{}copy \n'.format(Fore.RESET, Fore.RED, Fore.RESET, prefix))
                print('     - Token: ', token.replace)('M', '*').replace('.', '_').replace('A', '*').replace('B', '*').replace('C', '*').replace('D', '*').replace('E', '*').replace('F', '*').replace('G', '*').replace('H', '*').replace('I', '*').replace('J', '*').replace('K', '*').replace('L', '*').replace('N', '*').replace('O', '*').replace('P', '*').replace('Q', '*').replace('R', '*').replace('S', '*').replace('T'),
                print('     - Prefix: ' + prefix)
                print(f'            {Fore.RED}\n            Tool By HzzH - \n            {Fore.RED}Github: {Fore.MAGENTA}https://github.com/HzzH-Tools\n            {Fore.RED}Youtube: {Fore.MAGENTA}https://www.youtube.com/channel/UCpBjsgrb8onVk0jgNYikQyQ\n            {Fore.RED}Discord: H-zz-H#0891 - {Fore.MAGENTA}https://discord.gg/UG3xYs4dgp')
                print('\n------\n')

            @client.command()
            async def copy(ctx):
                await ctx.message.delete()
                wow = await client.create_guild(f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}')
                await asyncio.sleep(4)
                for g in client.guilds:
                    if f'CopyServerTool-ByHzzH#0891-{ctx.guild.name}' in g.name:
                        for c in g.channels:
                            await c.delete()
                        for cate in ctx.guild.categories:
                            x = await g.create_category(f'{cate.name}')
                            for chann in cate.channels:
                                if isinstance(chann, discord.VoiceChannel):
                                    await x.create_voice_channel(f'{chann}')
                                if isinstance(chann, discord.TextChannel):
                                    await x.create_text_channel(f'{chann}')
                        print(ctx.guild.roles)
                for role in ctx.guild.roles[::(-1)]:
                    if role.name!= '@everyone':
                        try:
                            await wow.create_role(name=role.name, color=role.color, permissions=role.permissions, hoist=role.hoist, mentionable=role.mentionable)
                            print(f'Created new role : {role.name}')
                        except:
                            exit()
            client.run(token, bot=False)
        else:  # inserted
            print(f'{Fore.RED}Error[]')
            time.sleep(2)
            exit()
    else:  # inserted
        print(f'{Fore.RED}Error[]')
        time.sleep(2)
        exit()
else:  # inserted
    print(f'{Fore.RED}Error[]')
    time.sleep(2)
    exit()

Bro thats actually crazy. How can u do this lol. How much time does something like this take?

@battlejesus
Copy link

Bro thats actually crazy. How can u do this lol. How much time does something like this take?

It's not that hard to do xD Python is not that secure

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants