- nmap
- Add
unattended.htb
to the hosts file so we can refer to the host by name$ echo "10.10.10.126 unattended.htb" >> /etc/hosts
from PIL import Image, ImageDraw, ImageSequence, ImageFont | |
import io | |
import click | |
FIRST_NUMBER = click.prompt('Enter the low number of the range', default=10330, type=int) | |
LAST_NUMBER = click.prompt('Enter the high number of the range', default=10346, type=int) | |
FRAME_DURATION = click.prompt('How long to hold on each number', default=100, type=int) | |
ANIMATED_GIF_FILENAME = click.prompt('Enter the name of the animated gif to generate', default="incrementing-counter.gif", type=str) | |
TEXT_COLOR = (255,255,255) |
# syntax=docker/dockerfile:1.0.0-experimental | |
# ------------------------------------------------------------------------- | |
FROM python:3.8-slim | |
# ------------------------------------------------------------------------- | |
LABEL maintainer="Jeremy Pruitt <[email protected]>" | |
ARG VERSION | |
ARG BUILD_DATE | |
ARG VCS_REF |
# Formatting | |
DEFAULT=`tput sgr0` | |
BRIGHT=`tput bold` | |
RED=`tput setaf 1` | |
GREEN=`tput setaf 2` | |
YELLOW=`tput setaf 3` | |
BLUE=`tput setaf 4` | |
MAGENTA=`tput setaf 5` | |
CYAN=`tput setaf 6` | |
WHITE=`tput setaf 7` |
A go-based single-binary and very fast replacement for both gobuster and wfuzz. It can perform both dirbuster style URL path/extension-specific fuzzing, and also URL param fuzzing.
Wfuzz style of URL param fuzzing:
$ ffuf -w /usr/share/commix/src/txt/passwords_john.txt \