Forum Moderators: open
NoteTab Pro let me open this huge file after I downloaded it and I discovered:
Warning: Truncating oversized username
Skipping bad record (1)
...
...
Warning: Truncating oversized username
Skipping bad record (315888)
this is the entry in my access log just before these started occurring:
192.116.134.100 - - [28/Sep/2003:18:54:38 -0400] "GET / HTTP/1.1" 200 27274 "-" "Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; DTS Agent"
the damn script or stupid user did this for over an hour from Sep 28 18:54:43 2003 until Sep 28 20:09:26 2003
tech support tells me they can't find any unusual accesses, but I'm wondering if try #315889 might have been successful. I have no open relays and email seems to be ok but I'm still worried.
I've blocked this in htaccess by user agent
RewriteCond %{HTTP_USER_AGENT} DTS\ Agent$ [NC,OR]
should I block by the IP, too?
another hour+ wasted because of obnoxious spam bots *!@@*&%$#@!
Thanks for posting. I need to add DTS to my ban list too.
I'm wondering if try #315889 might have been successful
There's no way to be sure, but I bet he just gave up.
Hey Nancy, the rewrite you're planning on using won't work for this one because I tried it myself and still got visits from DTS Agent. I started using the following and have not seen it since.
RewriteCond %{HTTP_USER_AGENT} ^DTS [OR]
Does anyone know if there is a tool to send fake UA's to a server? I kinda like to test these out on dummy data rather than wait for the real-life bot hitting and find out then it doesn't work.
[edited by: BlueSky at 3:18 am (utc) on Sep. 30, 2003]
I'm going to use pendanticist's since it worked with wannabr.....r! I also blocked the IP.
yes, I figured it was someone running a script for username/password and tech support said they probably gave up because if #315889 had worked I probably wouldn't have a site or email.
I checked whosis.geektools for the IP but since I don't really understand it, should I just block the entire IP range?
I don't want to get up tomorrow morning and find another 86MB waiting or, worse, find they succeeded and I have no site :(
inetnum: 192.116.133.0 - 192.116.137.255
netname: GILAT-SATCOM-BLOCK-38-39-41-42-43
descr: SKY2Net ltd
country: GB
admin-c: AH935-RIPE
tech-c: AH935-RIPE
status: ASSIGNED PA
mnt-by: AS3339-MNT
mnt-lower: AS3339-MNT
changed: hank@att.net.il 20030813
source: RIPE
route: 192.116.128.0/18
descr: ATT-ISRAEL-BLOCK5
origin: AS3339
mnt-by: AS3339-MNT
changed: hank@att.net.il 19991212
source: RIPE
person: Amit Hoomash
address: Gilat Satcom
address: 1651 Old Meadow Rd.
address: Mclean,VA 22102 USA
phone: +972 3 9255000
fax-no: +972 3 9255005
e-mail: amith@gilat.net
nic-hdl: AH935-RIPE
mnt-by: AS3339-MNT
changed: hank@att.net.il 20020410
source: RIPE
RewriteCond %{HTTP_USER_AGENT} ^DTS [OR]
Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; DTS Agent pedanticist's one is better, I use it too.
As I already indicated in a earlier thread on the DTS Agent, this is not necessarily a mail harvester. the original c++ code which is still around is a sample simple http class for win32 (I use it too - but changed the UA ;-)
will not work! The "^" is wrong here as the UA string is Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; DTS Agent
Bull
Use of "^" signifies "begins" with, Use of "$" signifies "ends" with.
This UA begins with the word Mozilla and ends with the word Agent.
The method you use apparently is supposed to work regardless of location. I've had it fail though and use it very sparringly.
Bull
Use of "^" signifies "begins" with, Use of "$" signifies "ends" with.
Yes.- Therefore
RewriteCond %{HTTP_USER_AGENT} ^DTS [OR] Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt; DTS Agent Hope I get and got everything right? Tired.