Skip to content

Instantly share code, notes, and snippets.

@rahmiy
Forked from 5bhuv4n35h/buffers.sh
Created July 27, 2020 12:25
Show Gist options
  • Save rahmiy/71cc63156ed0a5fd98e0cf63f604c17d to your computer and use it in GitHub Desktop.
Save rahmiy/71cc63156ed0a5fd98e0cf63f604c17d to your computer and use it in GitHub Desktop.
gerate unique string and eip in one place .run buffer overflow e
#!/bin/bash
##### (Cosmetic) Colour output
RED="\033[01;31m" # Issues/Errors
GREEN="\033[01;32m" # Success
YELLOW="\033[01;33m" # Warnings/Information
BLUE="\033[01;34m" # Heading
BOLD="\033[01;01m" # Highlight
RESET="\033[00m" # Normal
echo -e "${GREEN}"
##################################installation starts ######################################
options=("create unique pattern for buffer overflow " "locate patter offset for bufer overflow" "Quit")
select opt in "${options[@]}"
do
case $opt in
####options####
"create unique pattern for buffer overflow ")
echo -e "${GREEN} "
/usr/bin/msf-pattern_create -h
read -p "enter the length of buffer" lent
/usr/bin/msf-pattern_create -l $lent
;;
"locate patter offset for bufer overflow")
/usr/bin/msf-pattern_offset -h
echo -e "\n remember the length of buffer from previous step && copy the stringfrom eip"
read -p "enter the length of buffer " lenb
read -p "enter the eip string " eipb
/usr/bin/msf-pattern_offset -l $lenb -q $eipb
;;
"Quit")
break
;;
*)
echo invalid option
;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment