https://www.nom.fish/write-up/5charlie-ctf-disorderly2/
Brute force + hand-solve for 5CTF's Discorderly2 challenge. It's not pretty but it does the job.
python3 brute_solve.py
https://www.nom.fish/write-up/5charlie-ctf-disorderly2/
Brute force + hand-solve for 5CTF's Discorderly2 challenge. It's not pretty but it does the job.
python3 brute_solve.py
https://www.nom.fish/write-up/5charlie-ctf-disorderly2/
My "nicer" solve for 5CTF's Discorderly2 challenge. Mostly just a quick fun refresher on C and applying a different technique.
$ gcc -Wall -pedantic -o setsolve setsolve.c
$ python3 c_solve.py jmrxy
#!/bin/bash | |
# Install Docker on Parrot 4.10 | |
set -o errexit | |
set -o nounset | |
sudo apt update | |
sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common |
Array.prototype.randChoice = function() { | |
return this[~~(Math.random() * this.length)]; | |
} | |
const sel_opts = [ | |
["Google", ["Chrome", "Android"]], | |
["Microsoft", ["Edge", "Windows"]], | |
["Apple", ["iPhone"]], | |
["Facebook", ["Facebook", "Instagram"]] | |
]; |
#!/usr/bin/env python3 | |
"""Finds uids for usernames on CTFtime""" | |
# Seriously why is this not easier to do? | |
import argparse | |
import logging | |
import math | |
import re | |
import time |
#!/usr/bin/env python3 | |
"""Configure a Wacom tablet for use with a single screen and Touch disabled""" | |
import subprocess | |
def main(): | |
screens = [s for s in get_selector_next( | |
subprocess.check_output(["xrandr"]).decode("UTF8"), | |
u"connected", |
NOTE: This is still being refined.
I'm not sure if I had any pre-existing packages that were necessary or if all of the ones I list are necessary.
If you have any feedback, please let me know.
Thank you!
Distro Packages
#!/usr/bin/env python3 | |
import datetime | |
import tweepy | |
def main(): | |
# https://developer.twitter.com/en/apply-for-access | |
consumer_key = "<add>" | |
consumer_secret = "<add>" |
#!/usr/bin/env python3 | |
__author__ = 'cetaSYN' | |
import argparse | |
import queue | |
import signal | |
import socket | |
import sys | |
import threading |
#!/use/bin/env python3 | |
# SANS Holiday Hack 2019 Objective 5 - Determine Compromised System | |
import dateutil.parser | |
from datetime import timedelta, datetime | |
from os import listdir | |
from os.path import isfile, join | |
import pprint |