From 66e31858e3aaedeaa4417e46b6d65493eb10abaa Mon Sep 17 00:00:00 2001 From: snipe_blaze <72265661+notsniped@users.noreply.github.com> Date: Thu, 14 Apr 2022 15:11:23 +0530 Subject: [PATCH] Removed some auth tokens Thanks to @paulranshaw for pointing this out! --- cogs/eval.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cogs/eval.py b/cogs/eval.py index ddfa6ee..1c11f15 100644 --- a/cogs/eval.py +++ b/cogs/eval.py @@ -24,8 +24,7 @@ def get_syntax_error(self, e): async def _eval(self, ctx, *, body): ids = [] if ctx.message.author.id not in ids: return - blocked_words = ['while', 'quit', 'exit', 'SystemExit', 'open', '.delete()', 'os', 'subprocess', 'base64', 'history()', '("token")', "('token')", - 'aW1wb3J0IG9zCnJldHVybiBvcy5lbnZpcm9uLmdldCgndG9rZW4nKQ==', 'aW1wb3J0IG9zCnByaW50KG9zLmVudmlyb24uZ2V0KCd0b2tlbicpKQ=='] + blocked_words = ['while', 'quit', 'exit', 'SystemExit', 'open', '.delete()', 'os', 'subprocess', 'base64', 'history()', '("token")', "('token')"] if ctx.message.author.id != 738290097170153472: for x in blocked_words: if x in body: