Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

"ICMP PING CyberKit 2.2 Windows"

467 views
Skip to first unread message

Neil Alex Lee

unread,
Aug 22, 2003, 3:05:16 AM8/22/03
to
Greetings. I have been getting loads of the above report in the IDS logs.
For several days now, 3 or 4 ICMP Echo Requests have been sent to my
dialled-up Smoothwall every minute from several different IP's.

Has anyone else experienced this?
Is this part of some virus scanning technique?
Does anyone know a command to drop ICMP Echo Request packets?

Thanks for any help.


Bob

unread,
Aug 22, 2003, 11:01:43 AM8/22/03
to
At Fri, 22 Aug 2003 07:17:16 GMT, "Neil Alex Lee" <21...@xanadu.com> reached
down, grabbed what he thought was the keyboard and started stroking in
alt.os.linux.smoothwall:

I've been seeing this constantly since Monday (18 August) at 1500 GMT, with
at least 90 percent of them being from within my (broadband) provider's
network. I attributed this to the recent wave of viruses we've had and the
fact that most users got hit with it in some form or another because they
had not downloaded the necessary patches to protect their machines.


=================================================================
Bob Ashley - UNIX Geek
usenet (at) house (dash) bowlrz (dot) org


Are you auto-extracting e-mail addresses? Then u...@ftc.gov and
rep...@fraud.org should be of special interest.

FLAMES > /dev/null
=================================================================

Neil Alex Lee

unread,
Aug 23, 2003, 1:05:41 AM8/23/03
to
Further research indicates it is due to the "Welchia" virus which sends ICMP
Echo Requests to determine available hosts before trying a tcp/135
connection.
The majority of this traffic is also coming from within my providers
network.

"Bob" <flames2...@cox.net> wrote in message
news:Xns93DF7030897B8s6...@68.1.17.6...

Bob

unread,
Aug 23, 2003, 3:07:26 AM8/23/03
to
At Sat, 23 Aug 2003 05:17:41 GMT, "Neil Alex Lee" <21...@xanadu.com>

reached down, grabbed what he thought was the keyboard and started
stroking in alt.os.linux.smoothwall:

> Further research indicates it is due to the "Welchia" virus which sends


> ICMP Echo Requests to determine available hosts before trying a tcp/135
> connection.
>
> The majority of this traffic is also coming from within my providers
> network.
>

Gotta love those ordinary, dumb users ... no protection and will open every
attachment they receive. *SIGH*

Nep2n

unread,
Aug 24, 2003, 10:36:44 PM8/24/03
to
The worm is targeted at 2000&XP.
As long as you don't have port 135 fwd'd externally, you should be fine.


"Bob" <flames2...@cox.net> wrote in message

news:Xns93E01FC7B224As6...@68.1.17.6...

Paul Bottomley

unread,
Sep 1, 2003, 5:03:35 PM9/1/03
to
I too have these pings, its filling my log files at the rate of 100 meg a
day !!! this is something that will kill my firewall? is there a way to stop
ping replies in smoothie? 2.0 orient patch 2

"Nep2n" <pla...@solarsystem.net> wrote in message
news:vkitlmj...@corp.supernews.com...

Bob

unread,
Sep 1, 2003, 6:01:23 PM9/1/03
to
At Mon, 01 Sep 2003 21:03:35 GMT, "Paul Bottomley"
<botto...@hotmail.com> reached down, grabbed what he thought was the

keyboard and started stroking in alt.os.linux.smoothwall:

> I too have these pings, its filling my log files at the rate of 100 meg


> a day !!! this is something that will kill my firewall? is there a way
> to stop ping replies in smoothie? 2.0 orient patch 2
>

I was reading at the Smoothwall web site a way to filter out IGMP packets
using ipchains ... I'm sure the ICMP packets could be done the same way.

The web site ... http://www.quarkav.com/SmoothWallGPL


HTH

Jason

unread,
Sep 1, 2003, 6:39:46 PM9/1/03
to
* Paul Bottomley <botto...@hotmail.com>:

> I too have these pings, its filling my log files at the rate of 100 meg a
> day !!! this is something that will kill my firewall? is there a way to stop
> ping replies in smoothie? 2.0 orient patch 2
>

2.0 run iptables or ipchains?

For iptables I have this:

Create /etc/rc.d/rc.local firewall and put the
following lines in it:

#!/bin/sh
# Custom Input Rule
/sbin/iptables -F CUSTOMINPUT
# Relieve your logs of MS induced congestion!
/sbin/iptables -A CUSTOMINPUT -p tcp --dport 135 -j DROP
/sbin/iptables -A CUSTOMINPUT -p udp --dport 135 -j DROP
/sbin/iptables -A CUSTOMINPUT -p tcp --dport 137 -j DROP
/sbin/iptables -A CUSTOMINPUT -p udp --dport 137 -j DROP
/sbin/iptables -A CUSTOMINPUT -p tcp --dport 139 -j DROP
/sbin/iptables -A CUSTOMINPUT -p udp --dport 139 -j DROP
/sbin/iptables -A CUSTOMINPUT -p tcp --dport 445 -j DROP
/sbin/iptables -A CUSTOMINPUT -p udp --dport 445 -j DROP
/sbin/iptables -A CUSTOMINPUT -p tcp --dport 1434 -j DROP
/sbin/iptables -A CUSTOMINPUT -p udp --dport 1434 -j DROP

Once it's installed, it will run automatically every time you reboot. If
you
just created it and don't want to reboot, just run it, like:

/etc/rc.d/rc.local <enter>

I'm not sure if that will help you or not but it sure cleared my log
file to a managable size. I have a ipchains version here somewhere
also.

Jason

Dave

unread,
Sep 1, 2003, 8:53:17 PM9/1/03
to
A good plan - to keep MS-Blaster out of your logs.
However, this will make zero difference to ICMP packets.

--
Dave Harry

"Jason" <Ja...@beer.it.does.the.body.good> wrote in message
news:SUP4b.3200$Ej.4...@ursa-nb00s0.nbnet.nb.ca...

Dave

unread,
Sep 1, 2003, 9:00:59 PM9/1/03
to
Instead, try removing this rule from /etc/snort/icmp.rules

alert icmp $EXTERNAL_NET any -> $HOME_NET any (msg:"ICMP PING CyberKit 2.2
Windows"; content:"|aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa|";itype:8;depth:32;
reference:arachnids,154; sid:483; classtype:misc-activity; rev:2;)

You'll have to restart snort.

--
Dave Harry


Paul Bottomley

unread,
Sep 2, 2003, 4:35:20 AM9/2/03
to
Thanks for all the hints, for now I have stopped ping replies from my
smoothie, that's quietened things down hell of a lot, but I like the idea of
filtering log entries in the icmp.rules. Not being a real Linux person and
hating VI with a passion it takes time to do these things. BUT still think
smoothie is what every person needs.

"Dave" <Da...@please.keep.replies.in.the.newsgroup> wrote in message
news:fZR4b.77496$bo1....@news-server.bigpond.net.au...

Dave

unread,
Sep 3, 2003, 4:08:11 AM9/3/03
to

"Paul Bottomley" <botto...@hotmail.com> wrote in message
news:bj1ko8$maj$1...@hercules.btinternet.com...

> Thanks for all the hints, for now I have stopped ping replies from my
> smoothie, that's quietened things down hell of a lot, but I like the idea
of
> filtering log entries in the icmp.rules. Not being a real Linux person and
> hating VI with a passion it takes time to do these things. BUT still think
> smoothie is what every person needs.

Glad to help.
Since I'm somewhat a hack at Linux stuff too, and just can't cope with vi
either, (joe is a bit easier for me) I actually use WinSCP2 and Textpad to
copy files to a Windows box and edit them there. This gives me a backup of
everything I've done too.

--
Dave Harry


0 new messages