Useful scripts 🌊

Combining passwords for brute force:

#!/bin/bash

# Comprueba que se han pasado tres argumentos al script
if [ "$#" -ne 3 ]; then
  echo "Usage: $0 <words> <combinations> <output_file>"
  exit 1
fi

# Asigna los argumentos a variables
WORDLIST="$1"
COMBINATIONS="$2"
FINAL_WORDLIST="$3"

# Procesa la wordlist y las combinaciones
while read -r line; do
  while read -r combo; do
    echo "${line}${combo}"
  done < "$COMBINATIONS"
done < "$WORDLIST" > "$FINAL_WORDLIST"

echo "New wordlist has been created: $FINAL_WORDLIST"

Convert a wordlist to its md5 equivalent (all passwords to md5):

More efficient one:

Duplicate to x times each word of a wordlist

Last updated