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
| 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'([-]+)[|]') |
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
| 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) |
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
| from pwn import * | |
| import codecs | |
| import chess | |
| import chess.engine | |
| def main(): | |
| Boardposstr = "abcdefgh" | |
| r = remote('94.237.63.93', 38882) |
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
| #!/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:" |