Skip to content

Instantly share code, notes, and snippets.

View fred-sheehan's full-sized avatar

Fred Sheehan fred-sheehan

View GitHub Profile
@fred-sheehan
fred-sheehan / ash-timeout-prompt.ash
Last active February 23, 2023 02:35 — forked from Juul/ash-timeout-prompt.ash
Synced via Snip
#!/bin/ash
# This script waits for three seconds for the user to press any key
# that generates a character (other than enter) and otherwise
# proceeds normally
#
# This is an ash shell script for use in e.g. a busybox initrd
# to allow letting the user boot into a rescue environment (e.g. the initrd itself)
#
# This script requires: dd, stty, grep, cut, kill and sleep
@fred-sheehan
fred-sheehan / reconftw.cfg
Created February 6, 2023 03:17 — forked from jhaddix/reconftw.cfg
reconFTW config file: NO google/osint, wordlist creation, nuclei js analysis
#################################################################
# reconFTW config file #
#################################################################
# General values
tools=~/Tools # Path installed tools
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" # Get current script's path
profile_shell=".$(basename $(echo $SHELL))rc" # Get current shell profile
reconftw_version=$(git rev-parse --abbrev-ref HEAD)-$(git describe --tags) # Fetch current reconftw version
generate_resolvers=false # Generate custom resolvers with dnsvalidator
@fred-sheehan
fred-sheehan / bountyscan_setup.sh
Last active February 23, 2023 02:35 — forked from jhaddix/bountyscan_setup.sh
Synced via Snip
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive;
echo "[*] Starting Install... [*]"
echo "[*] Upgrade installed packages to latest [*]"
echo -e "\nRunning a package upgrade...\n"
apt-get -qq update && apt-get -qq dist-upgrade -y
apt full-upgrade -y
apt-get autoclean
echo "[*] Install stuff I use all the time [*]"