
03-12-2001, 07:19 AM
|
|
Closed
|
|
Join Date: Oct 2000
Location: Australia
Posts: 538
|
|
We've just had another apparent brute force attack on our software download system, which uses HTAccess. This time, 9998 attempts were made by the same IP address, but all failed. Usernames ranged from things like "member", "visitor" and "private" through to crude language and pornographic references. In some respects, it seems to have been more intended as an annoyance than anything. Last time it was only 99 attempts, and someone on this forum pointed out that it could have just been Gozilla making a download attempt (and that seems by far the most likely case). But this time it was IE that was used.
I'm wondering if there's any course of action that we can take. We know the IP, but is it possible for us to contact our host and somehow ban access from that IP or something? And I'm not really sure if it's a big deal. Nearly 10,000 attempts seems big to me, but for all I know that could just be a petty attack. It may have even been intended as a DoS attack for all I know.
Anyone know much about this sort of stuff? I'm no expert on it.
|

03-12-2001, 05:52 PM
|
|
Retired Moderator
|
|
Join Date: Jan 2001
Posts: 2,603
|
|
Don't having your host ban that IP address. Instead, look up who that IP address belongs to, and ask the company's abuse contact to kill that person's account.
Make sure that you send them the logfile lines corresponding to the attack (or at least, the first five and the last five).
|

03-13-2001, 02:07 AM
|
|
Web Hosting Master
|
|
Join Date: Aug 2000
Posts: 2,750
|
|
Yup. Before you do anything, find out everything you can with the persons Ip address. Where he/she lives, what he does, which his ISP is etc etc. And then give the ISP and the local police department a lil visit.
__________________
The Php Support Desk
http://www.phpsupportdesk.com
Custom programming - kunal @ e-phoria.com
http://www.pingzine.com - Ping!Zine. the FREE, FRESH and EXCITING Web Hosting Magazine...
|

03-13-2001, 11:09 AM
|
|
Registered User
|
|
Join Date: Jan 2001
Location: New Jersey
Posts: 190
|
|
Quote:
|
And then give the ISP and the local police department a lil visit.
|
Will the local police even do anything?
|

03-13-2001, 07:22 PM
|
|
Web Hosting Master
|
|
Join Date: Apr 2000
Location: 80,000 feet under the sur
Posts: 2,736
|
|
Quote:
Originally posted by vizi
Quote:
|
And then give the ISP and the local police department a lil visit.
|
Will the local police even do anything?
|
Depends on your local police's willingness to do something about it. Usually a quick visit by the police is enough to deter it.
My local police are just catching up to cyberspace crimes and they're making some inroads.
__________________
My 2 Cents.... (or is that 2.2 cents inc. GST...?)
Have a think about this : Programming is like sex. Make a single little mistake, and you'll be supporting it for the rest of your life.
|

03-14-2001, 02:39 AM
|
|
Closed
|
|
Join Date: Oct 2000
Location: Australia
Posts: 538
|
|
Thanks for the advice.
We have managed to scavenge some info about the person, but not a lot. I'm not too worried anyway, I think it's more of a thing to keep an eye on than rigorously pursue. Of course, if they had gotten in it would have been a different story...
|

03-18-2001, 02:03 PM
|
|
WHT Addict
|
|
Join Date: Sep 2000
Posts: 134
|
|
There is a good software program called neotrace, they even have another one called hacktrace, but it only works for your local machine..
I would research installing and IDS system on your server.
__________________
http://www.MyBizHosting.com - Excellent Small Business Web Hosting
http://www.MyServletHosting.com - Premier JSP/Servlet Hosting using the latest technology!
http://www.FollowUpMarketer.com - GRAND OPENING!!!
|

04-09-2001, 09:00 AM
|
|
Junior Guru Wannabe
|
|
Join Date: Apr 2001
Posts: 65
|
|
If you have a webpage with login and password you can use (with php) a sleep command, like sleep(5).
So when a user enters a wrong password the script waits 5 seconds. A normal user won't notice it, but a hacker trying 10000 logins has to wait at least 10000 * 5 seconds which is almost 14 hours. I don't know if this is possible with htaccess too.
This has not much to do with the topic but it's nice to know i think
Erik
|

04-09-2001, 11:26 AM
|
|
WHT Addict
|
|
Join Date: Feb 2001
Posts: 104
|
|
i'm rather doubtful that someone sat down and used IE to guess 9998 times to try to get a valid user/password. the user agent field is probably not reliable in this case
that sleep idea sounds cool... like sandpitting spammers. of course, they could always do 10000 seperate http connections instead... but it would surely slow them down. (if they do do 100000 seperate http connections, they'll probably do multiple of them simultaneously, which might cause your server's max httpd process limit to be hit...)
__________________
bumping up my number of posts by another one...
|

04-09-2001, 12:00 PM
|
|
Junior Guru Wannabe
|
|
Join Date: Apr 2001
Posts: 65
|
|
The best solution of course is to count the invalid logins from each ip and deny it when there were more than x wrong passwords and at the same time use the sleep trick. This makes everything at least a bit more difficult for the average script kiddie.
Oh i remember there are programs to fill in the form in IE or any other program so they/he/she used IE but of course didn't do it manually.
|

04-11-2001, 03:17 AM
|
|
learning is in the doing
|
|
Join Date: Sep 2000
Location: Alberta, Canada
Posts: 3,109
|
|
Quote:
|
Originally posted by eriky The best solution of course is to count the invalid logins from each ip and deny it when there were more than x wrong passwords
|
Any idea/suggestions eriky, on how a person would do this?
__________________
• PotentProducts.com - for all your Hosting needs
• Helping people Host, Create and Maintain their Web Site
• ServerAdmin Services also available
|

04-11-2001, 04:59 AM
|
|
Junior Guru Wannabe
|
|
Join Date: Apr 2001
Posts: 65
|
|
If you can program in php or perl it wouldn't be too hard to make this but I can't explain _exactly_ how to do this. I never wrote such a program so I don't have example code either.
|

04-12-2001, 12:33 AM
|
|
Newbie
|
|
Join Date: Mar 2001
Posts: 18
|
|
I seriously doubt the police could do anything about it even if they wanted to. What's the crime?
If they actually got in and destroyed property maybe.
However if they are from outside the country ..or going
through proxy servers from all over the world you probably
couldn't find them if you wanted to. Especially if they initiated the attack from a hacked account,used a proxy server that deletes log files,etc.
[Edited by marcum on 04-12-2001 at 12:43 AM]
|

04-12-2001, 05:13 AM
|
|
Closed
|
|
Join Date: Oct 2000
Location: Australia
Posts: 538
|
|
This thread seems to be getting some action a month after it died off!
marcum - I'm sure there is some sort of offence involved. If I threw a brick at a shopfront window, it would be more serious if the brick actually broke the window, but still an offence if it didn't. Cracking into a site is a similar sort of thing. I agree that the police couldn't/wouldn't do much though.
I realise it's not the sort of offence that attracts much attention or punishment, if any. Whether it's a "crime", "offence" or just someone being "naughty", it still has potential to do damage, and I think that's the important thing.
eriky - I don't think you couldn't use perl or PHP unless your authentication program was written in them. At least in our case, we use HTAccess. Any idea how to set such options as you suggest in a .htaccess file? Is it even possible?
|

04-12-2001, 05:43 AM
|
|
Web Hosting Master
|
|
Join Date: Nov 2000
Location: USA
Posts: 1,269
|
|
Quote:
Originally posted by Lawrence
This thread seems to be getting some action a month after it died off!
...
|
What eventually happened with the attacker? Did they keep coming back?
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
| Postbit Selector |
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|
|
| Login: |
|
|
| Advertisement: |
|
|
| Web Hosting News: |
|
|
|