This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
========================== | |
| JerseyCTF V Writeups | | |
========================== | |
------------------------------------------------------------------------------ | |
Crypto: The-Hidden-Key | |
""" | |
An anonymous party was using Wireshark looking network activity and stumbled |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import praw | |
import datetime | |
# fill this out | |
client_id = '' | |
client_secret = '' | |
password = '' | |
user_agent = '' | |
username = '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"accountId": "51412a4b-7173-4780-8640-301c92301afc", | |
"platformId": 3, | |
"platformName": "pc", | |
"platformNameLong": "PC", | |
"epicUserHandle": "umbresp", | |
"stats": { | |
"p2": { | |
"trnRating": { | |
"label": "TRN Rating", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
import java.io.*; | |
public class Decrypt { | |
public static void main(String[] args) throws Exception { | |
run(); | |
} | |
/* Why did i not write comments fml*/ | |
public static void run() throws Exception { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@bot.command(name='help') | |
async def new_help_command(ctx, *commands: str): | |
'''Shows this message''' | |
destination = ctx.message.author if bot.pm_help else ctx.message.channel | |
def repl(obj): | |
return bot._mentions_transforms.get(obj.group(0), '') | |
# help by itself just lists our own commands. | |
if len(commands) == 0: |