I hereby claim:
- I am skryptkiddie on github.
- I am skryptkiddie (https://keybase.io/skryptkiddie) on keybase.
- I have a public key ASABVS1UEEj2A6ewUJy0KpgVGuJIh1mVK6gnZ9-0NePpIwo
To claim this, I am signing this object:
| -----BEGIN PGP MESSAGE----- | |
| Version: Keybase OpenPGP v2.1.13 | |
| Comment: https://keybase.io/crypto | |
| wcFMA7X/Su96HzKCARAA0e04hWl7HSjKhq9fN7iTYz+g/U1dCQOpGvNDKtuI9OL6 | |
| 6prIePNCccf2SNTkqi/ahN5XizI9mWQ6m37hcuDciPBcL2+bluVRek5yV15auJDB | |
| Tea2NfpPpueXo2+yuzLd2mOzk0y61Z0y0Dnr9kBUtat+5ozP8pJuoR6gI1sSuUku | |
| w/5ZUnscl30cILkFbGoO76dAlpXmZ1Q9ejbEzUpAs+tZrVzxzRWEXzsTbdUaHz2t | |
| vGKfFimYw7XETE19nr7Ju6cQMo9is4bg/LvsbpmTFk19Tz9PUvQr+DY39sLs2d/X | |
| 3QzkRJir7cYwJxnfs6gAZ+8WqU1GlaO8Qh2eidsU7LWdaBwlCtTrnBJ9qeXeCzBS |
I hereby claim:
To claim this, I am signing this object:
| import smtplib, argparse, base64 | |
| from email.mime.text import MIMEText | |
| parser = argparse.ArgumentParser(description="Spoof emails via SMTP server backdoor.") | |
| parser.add_argument('address', type=str, help='SMTP server address') # define SMTP server address, can be IP or URL | |
| parser.add_argument('port', type=int, help='SMTP server port') # define SMTP port, default is 25 | |
| args = parser.parse_args() | |
| mailServerAddress = str(args.address) | |
| mailServerPort = int(args.port) |
| # based off https://gist.github.com/micolous/123ac1b7c3e9fb389e259ccd63df7992 | |
| # converted to python3 with minor changes | |
| from argparse import ArgumentParser, FileType | |
| from struct import unpack | |
| from datetime import datetime, timedelta | |
| class t: | |
| HEADER = '\033[95m' | |
| BOLD = '\033[1m' | |
| ENDC = '\033[0m' |
| import discord | |
| from gtts import gTTS | |
| import os | |
| from discord.ext import commands | |
| bot = commands.Bot(command_prefix="lol?") | |
| print("Discord on the FM by @JoshekDev") | |
| print("Connecting to discord api") |
| /* Joshek's Dark theme for SEQTA */ | |
| /* Take a shot each time I use !important, you'll die at the end */ | |
| @import url('https://fonts.googleapis.com/css?family=Ubuntu'); | |
| @import url('https://fonts.googleapis.com/css?family=Muli'); | |
| ul { | |
| background-color: #171718 !important; | |
| font-family: 'Ubuntu', sans-serif; | |
| } | |
| div.nav { | |
| background-color: #2F2F31 !important; |
| import discord # golf bot by skryptkiddie | |
| from discord.ext import commands | |
| bot = commands.Bot(command_prefix="-", description="Simple Golf Discord bot in Python.") | |
| @bot.command(pass_context=True) | |
| async def ping(ctx): | |
| await bot.say("Pong") | |
| @bot.command(pass_context=True) | |
| async def ban(ctx, member: discord.Member): | |
| await bot.ban(member) | |
| @bot.command(pass_context=True) |
| # debug command | |
| @commands.check(ownercheck) | |
| @bot.command(pass_context=True) | |
| async def debug(ctx, *, code): | |
| """Evaluate code""" | |
| global_vars = globals().copy() | |
| global_vars['bot'] = bot | |
| global_vars['ctx'] = ctx |