Results 1 to 4 of 4
I am using Ubuntu 11.04 and have just started using Snort!. (I installed the latest version of Snort! a couple of months ago.) When I run the following Snort! command
...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 01-22-2013 #1Just Joined!
- Join Date
- Jan 2013
- Posts
- 3
Snort UpnP Alert on Ubuntu
I am using Ubuntu 11.04 and have just started using Snort!. (I installed the latest version of Snort! a couple of months ago.) When I run the following Snort! command
I get the following output.Code:sudo snort -d -c /etc/snort/snort.conf -h 192.168.1.0/24 -l /etc/snort
(This is posted by references to web links which I cannot post since I am a new member.)Code:[**] [1:1384:8] MISC UPnP malformed advertisement [**] [Classification: Misc Attack] [Priority: 2] 01/21-20:18:02.413927 192.168.1.1:1900 -> 239.255.255.250:1900 UDP TTL:4 TOS:0x0 ID:0 IpLen:20 DgmLen:360 DF Len: 332
I followed the references and it appears that this is mainly a Windows problem and I am using Linux. However I do not think that I need UPnP and it appears to be a security risk. So I would like to disable it but have not found a good explanation about how to disable it, at least on Linux. I would be most grateful if someone could tell me how to do so.
Thanks,
Peter.
- 01-22-2013 #2Just Joined!
- Join Date
- Jan 2013
- Posts
- 8
You could just block it with iptables. UPnP runs on UDP port 1900 and TCP port 2869 according to Wikipedia.
Code:sudo iptables -A INPUT -p tcp --sport 2869 -j DROP
Then make sure you save those rules.Code:sudo iptables -A INPUT -p udp --sport 1900 -j DROP
- 01-23-2013 #3Just Joined!
- Join Date
- Jan 2013
- Posts
- 3
- 01-23-2013 #4Just Joined!
- Join Date
- Jan 2013
- Posts
- 8
No, I don't think so. Especially since you're not using Windows. I looked up those ports, and it appears that the only services that run on them are Microsoft services.
SSDP, which is specifically for UPnP, runs on UDP 1900, and ICSLAP, which is for Windows network sharing, runs on TCP 2869.
ports.my-addr.com/tcp_port-udp_port-application-and-description.php?port=2869
ports.my-addr.com/tcp_port-udp_port-application-and-description.php?port=1900


Reply With Quote

