Skip to content

Instantly share code, notes, and snippets.

View Acters's full-sized avatar

acters Acters

View GitHub Profile
@Acters
Acters / donut_one_second_solver.py
Created September 30, 2024 01:39
BuckeyeCTF 2024 Donut
from pwn import remote,context
import re
from collections import deque
from tqdm import tqdm
from time import sleep
def parse_ascii_art(ascii_art_lines):
towers = {1: [], 2: [], 3: []}
disk_sizes = []
disk_pattern = re.compile(r'([-]+)[|]')
@Acters
Acters / HTB_eliots_ECorp_pwn.py
Last active February 3, 2024 05:43
Hack the Box's Evil Corp Python Script Write up
from pwn import *
import codecs
# ------------------------
# Setting Up Variables
# ------------------------
context.arch = 'amd64'
context.os = 'linux'
context.endian = 'little'
context.bits = 64
p = remote('83.136.254.199',41316)
@Acters
Acters / HTB_Fentastic_Moves_Solve.py
Last active March 9, 2024 12:25
Hack the Box's Fentastic Moves Python Script Write Up
from pwn import *
import codecs
import chess
import chess.engine
def main():
Boardposstr = "abcdefgh"
r = remote('94.237.63.93', 38882)
@Acters
Acters / Monitored.sh
Last active January 19, 2024 21:00
Hack The Box's Monitored Seasonal Machine - Automated Admin Account Creation with cve exploit poc
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
echo "Starting exploit for HTB Monitored"
echo "/////NMAP SCAN/////"
echo "please type ip of machine:"