
This is an exploitation guide for CVE-2016-2233
CVE-2016-2233 is a stack-based buffer overflow vulnerability related with a wide-used IRC software Hexchat. We build a IRC server and launch the attack on it to make all the client connected to the server crash. We exploited our attack on Ubuntu 12.04 using Python. We make a patch to fix the vulnerability and prove it indeed works by various tests.
System Environment: Ubuntu 12.04 seed
Python Version: 2.7.12
To set up the dependencies, the following command should be executed:
sudo apt-get install gnome-common
sudo apt-get install libglib2.0-dev
sudo apt-get update
sudo apt-get install libgtk2.0-dev
Then extract the hexchat-2.10.2.zip file and enter the folder. Install the software using the following commands:
./autogen.sh
./configure
Make
sudo make install
The following commands are used to install ircd-irc2:
sudo apt install ircd-irc2
After the server is installed, use the following 2 commands to restart NetworkManager, and start the service.
sudo systemctl restart NetworkManager
sudo systemctl restart ircd-irc2
The exploit is run on the server, where the attacker occupies and listens to the port IRC is using, and spoof packets with a large payload to overflow the buffer on client’s side and make clients crash.
1.client make connection to server 2.Stop the IRC service, and restart NetworkManager to enable the change
sudo systemctl kill ircd-irc2
sudo systemctl restart NetworkManager
3.run the attack.py program on server
Replace the inbound.c file and reinstall the software using the following commands:
./autogen.sh
./configure
Make
sudo make install