
#-----------------------------------------------------------------------
# Copyright (C) 2000-2001, Jean-Sebastien Morisset <jsmoriss@mvlan.net>
#-----------------------------------------------------------------------
# $Id: evilftp,v 1.4 2001/08/11 17:01:21 jsmoriss Exp $
#-----------------------------------------------------------------------
# README
#-----------------------------------------------------------------------
#
# These rules were developed based on <http://xforce.iss.net/alerts/
# advise30.php>.
#
# EvilFTP is a backdoor that just sets up an FTP server on your machine.
# The server listens on port 23456, with a username of 'yo' and a 
# password of 'connect'. EvilFTP will run on Windows 95, 98, and Windows
# NT systems.
#
# To install, copy this file to /etc/firewall/modules/public/
# block-remote-ports/evilftp. There's no need to execute rc.firewall with
# the --update-config parameter.
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------

echo "Reject $INTOPT $IPADDR -> $ANY EvilFTP (logged)"
ipchains -A $OUTCHAIN -j REJECT -p tcp -y -s $IPADDR $UNPRIVPORTS -d $ANY 23456 -l

