Penetration testing

Gaining Shell Access via UART Interface Part 1

Nitesh Malviya
June 14, 2018 by
Nitesh Malviya

What is IoT

The Internet of Things (IoT) is the network of physical devices, vehicles, home, appliances, vehicle, and other items embedded with electronics, software, sensors, actuators, and connectivity which enables these objects to connect and exchange data.

A word on IoT Security

IoT is the next big technology which will change the way we communicate and exchange data among each other. Every day thousands of IoT devices are coming into the market, the majority of which collect, share, and exchange data among each other. Due to lack of security awareness and guideline/standards to be followed, the majority of IoT Devices are inherently insecure and pose a real threat to the people. Thus, understanding and learning the security of IoT device is of utmost importance.

What should you learn next?

What should you learn next?

From SOC Analyst to Secure Coder to Security Manager — our team of experts has 12 free training plans to help you hit your goals. Get your free copy now.

In a nutshell, securing an IoT Network involves securing following interfaces –

  1. Web Application Interface
  2. Mobile Application Interface
  3. Cloud Interface
  4. Secure Protocol Implementation – Protocols like Bluetooth, Zigbee, CoAP, MQTT, etc.
  5. Hardware Interface – UART, JTAG, SPI, I2C

Since all the interfaces cannot be discussed in a single post, I am restricting this post to UART. We will also see how one can gain shell access of an IoT Device by exploiting UART.

Types of Hardware communication

At the Hardware level, the device communicates and exchanges data with each other in 2 ways – Serial or Parallel Communication.

In Serial Communication, 1 bit of data is transferred at a time. Example –USB, Ethernet, etc. They all use serial communication for sending and receiving the data.

In Parallel Communication a block of data is transferred at a time. In parallel communication, each bit of data requires a separate line for sending the data. Since each bit is transmitted on a separate channel, parallel communication takes more space than serial communication.

Thus, serial communication is widely used in embedded devices since they take less space, unlike parallel communication.

What is UART

UART stands for Universal Asynchronous Receiver/Transmitter. It's a serial communication protocol. Since UART is Asynchronous, it does not make use of clock for communication with another device. Thus, extra care is taken while transferring the data asynchronously for minimizing the packet loss. So how do two devices communicate using UART? It is done using Baud Rate. More on Baud Rate later.

Sample UART pin is shown below marked in Red

It has four pins –

  1. Tx – Tx is used for transmitting the data from one device to another device
  2. Rx – Rx is used for receiving the data from one device to another device
  3. Vcc – Voltage Pin. It's usually either 3.3V or 5V
  4. GND – Ground Pin

UART Data Packet Structure –

UART transmitted data is organized into packets. Each packet contains -

  1. 1 start bit
  2. 5-9 data bits
  3. Parity bit (Optional)
  4. 1-2 stop bits


Let's understand UART packet in detail -

  1. START BIT – This is the first bit in any UART packet and the size is of 1 bit.
    When no transmission is happening on the UART line, the UART data transmission line is normally held at a high voltage level. The transfer of data is initiated by pulling the transmission line from high to low. This happens for 1 clock cycle. When the receiving line sees voltage transition from high to low, it starts reading the data in the data frame at a particular baud rate. I will discuss Baud Rate in next part
  2. DATA FRAME – After start bit, comes Data Frame. It contains the actual data to be transferred or transmitted. It can be 5-8 bits long, if a parity bit is used. If no parity bit is used, the data frame is 9 bits long.
  3. PARITY - After Data Frame, comes Parity Bit. This bit describes the evenness or oddness of a number. The parity bit is one of the ways for the receiving UART to tell if any data has changed during transmission. Bits can be changed due to electromagnetic radiation, long distance data transfers or mismatched baud rates. After receiving the data frame, receiving UART counts a number of 1's in the date frame checks whether the total is even or odd number. If the parity bit is 0, the no. of 1's should be an even number else the no. of 1's should be an odd number. If this isn't the case, UART comes to know that the bits have changed and is corrupt.
  4. STOP BITS - Stop Bit is the last bit in the UART Packet. The sending UART changes the transmission line from low voltage to high voltage for indicating the end of the transmission line.

UART ADVANTAGES AND DISADVANTAGES

Advantages –

  • Uses two wires
  • No clock signal needed.
  • Parity Bit for error checking
  • Widely Used.

Disadvantages –

  • Data frame size is limited to 9 bits.
  • No support for multiple slave or master

That's it for this post. In the next part, we will look at other technicalities of UART and tools required for Pentesting UART communication.

References –

https://en.wikipedia.org/wiki/Internet_of_things

http://www.flupzor.nl/2015/05/07/uart_on_ac750.html

What should you learn next?

What should you learn next?

From SOC Analyst to Secure Coder to Security Manager — our team of experts has 12 free training plans to help you hit your goals. Get your free copy now.

http://www.circuitbasics.com/basics-uart-communication/

Nitesh Malviya
Nitesh Malviya

Nitesh Malviya is a Security Consultant. He has prior experience in Web Appsec, Mobile Appsec and VAPT. At present he works on IoT, Radio and Cloud Security and open to explore various domains of CyberSecurity. He can be reached on his personal blog - https://nitmalviya03.wordpress.com/ and Linkedin - https://www.linkedin.com/in/nitmalviya03/.