UPnP, which stands for Universal Plug n Play, is a set of networking protocols used to facilitate adding of new devices to the network. It comes enabled default on most new routers.
For example, when you connect a new printer to the network, it automatically becomes discoverable by all other devices without you having to configure the IP address, or opening ports on the firewall. It does so through the concept of zero-configuration networking, which at it’s core consists of
- Automatic assignment of network address
- Automatic distribution and resolution of hostnames
- Automatic location of network services such as printers (through Service Discovery Protocol)
Device search and advertising is done over HTTP over UDP on port 1900
This means that any UPnP compatible device can join the network and automatically get an IP address, broadcast it’s name, advertise it’s capabilities /services on request, and learn about capabilities / services on the network.
UPnP Setup Steps
Addressing
The device implements a DHCP client, and must search for a DHCP server on the network. If no DHCP server exists on the network, it then assigns itself an IP through AutoIP
Discovery
The device then uses Simple Service Discovery Protocol (SSDP) to advertise it’s own service to Control Points (CP) on the network by sending SSDP Alive Messages, which provides very basic information about the device
Description
To learn more about the device, the Control Point must retrieve the device description from the URL provided from the SSDP. The Device Description comes in an XML format, and has information such as model number, serial number and manufacturer name.
Control
After getting the description, the Control Point can send actions to the device via Simple Object Access Protocol (SOAP)
Notifications
The UPnP device can send events or notifications to the Control Points on any changes that happen to it. This uses the General Event Notification Architecture (GENA)
Presentation
If the device has any pages for presentation, the Control Point can receive it and load it on the web browser
How It Is Abused
UPnP does not perform any sort of authentication, and assumes that any devices that is connected is trusted.
Also, UPnP can automatically configure port forwarding on the router without having any user intervention, or authentication.
Flash UPnP attack was one of the attack that abused the UPnP protocol, and how it works was by sending a UPnP request to the router to forward ports, thus exposing it to the internet. The attack could also change your primary DNS server with a UPnP request.
The best defense therefore is to disable UPnP on your routers
Leave a Reply