all groups > iis ftp > january 2006 >
You're in the

iis ftp

group:

FTP Login Flood atack


FTP Login Flood atack Ralph Hulslander
1/18/2006 10:46:04 AM
iis ftp:
A FTP server is being subjected to a massive (5 hours) login attack.
Apparently this is a know exploit attempt. Any ideas on how to stop this?

It appears the attack is from hijacked computers as the IP is allways
different.
It does not do any good to block a IP.
I can not use GPO as the user names are legitimate the passwords are not.

This is on a W2K SP 4 server.

Until I set the Event Log to overwrite this was definately a denial of
service attack
now my server handles the attack but it is using resources to acknowledge
each login request.

Any one have a script to turn off FTP for a minute? I beleive if the login
request were not acknowledged
the attacking script would give up and go look for someone else.

Thanks for any help.
Ralph
--
Re: FTP Login Flood atack Ralph Hulslander
1/19/2006 6:17:02 AM


[quoted text, click to view]

Christian you are the best, again thank you so much. I actually found some
script code examples on Technet after I posted this. I could stop and start
the ftp service but didm't know how to put the pause in.

Thanks again,
Re: FTP Login Flood atack Christian Paparelli
1/19/2006 9:09:48 AM
"Ralph Hulslander" <RalphHulslander@discussions.microsoft.com> ha scritto
nel messaggio news:5B109D19-44F5-45EC-8BC4-F310C024B82E@microsoft.com...
[quoted text, click to view]

try this code

@echo off
net stop msftpsvc
ping -n 1 -w 60000 0.0.0.1 >NUL
net start msftpsvc


--
Christian Paparelli
http://www.ithost.ch
Re: FTP Login Flood atack Christian Paparelli
1/19/2006 3:24:22 PM
"Ralph Hulslander" <RalphHulslander@discussions.microsoft.com> ha scritto
nel messaggio news:8B2E208D-822F-4A95-AD72-A92B2F813800@microsoft.com...

[quoted text, click to view]

thanks

[quoted text, click to view]

take a look here, you can use adsi with little code written in vbscript

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iissdk/html/45623306-a981-4db2-915e-60d86f9eab3c.asp


--
Christian Paparelli
http://www.ithost.ch
Re: FTP Login Flood atack Bernard Cheah [MVP]
1/22/2006 2:02:47 PM
Mmm.... stopping the service will not solve this forever. they will still
come back.
You need to collect those IP address and report to relevant authority.

--
Regards,
Bernard Cheah
http://www.iis-resources.com/
http://www.iiswebcastseries.com/
http://msmvps.com/blogs/bernard/


"Ralph Hulslander" <RalphHulslander@discussions.microsoft.com> wrote in
message news:5B109D19-44F5-45EC-8BC4-F310C024B82E@microsoft.com...
[quoted text, click to view]

RE: FTP Login Flood atack greg gallager
3/20/2006 5:26:29 PM
I'm running into a similar situation with a small FTP server we use. It's
mostly an annoyance, but, I limit to 5 concurrent connections and one hacker
opened up multiple threads using all 5 connections locking out my legitimate
clients.

Anonymous logins are not allowed, obviously.

I'm working on a VB application that scans the FTP log tallying up failed
login attempts by IP. It then checks if an offending IP is already in the
directory security table and adds it if not there. Different hackers take
different approaches as I mentioned. Some try every 6 seconds, others really
hammer away, for hours on end.

The application is still pretty rough around the edges right now. The
variables are the scan interval (I use 60 seconds) and the hack attempt
threshold (20 attempts). In a 2-3 month period I have 39 IP's locked out.

--
greg gallager
gallid assoc inc


[quoted text, click to view]
AddThis Social Bookmark Button